this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix dropdown shift on web (#5710)

authored by

Hailey and committed by
GitHub
8c638417 5ebb630c

+8
+4
bskyweb/templates/base.html
··· 75 75 top: 50%; 76 76 transform: translateX(-50%) translateY(-50%) translateY(-50px); 77 77 } 78 + /* We need this style to prevent web dropdowns from shifting the display when opening */ 79 + body { 80 + width: 100%; 81 + } 78 82 </style> 79 83 80 84 {% include "scripts.html" %}
+4
web/index.html
··· 80 80 top: 50%; 81 81 transform: translateX(-50%) translateY(-50%) translateY(-50px); 82 82 } 83 + /* We need this style to prevent web dropdowns from shifting the display when opening */ 84 + body { 85 + width: 100%; 86 + } 83 87 </style> 84 88 </head> 85 89