diff options
author | Hailey <me@haileyok.com> | 2024-10-11 08:35:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-11 08:35:53 -0700 |
commit | 8c6384175c8343c0cdc14b4fbefd53127f3f1866 (patch) | |
tree | e3551f104cdbf03c4c8867466941eb4ab029d2fb /bskyweb | |
parent | 5ebb630c9d9c462ca6c33f36dc470b53f88b62a5 (diff) | |
download | voidsky-8c6384175c8343c0cdc14b4fbefd53127f3f1866.tar.zst |
Fix dropdown shift on web (#5710)
Diffstat (limited to 'bskyweb')
-rw-r--r-- | bskyweb/templates/base.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index 9a50fae69..59cf39d02 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -75,6 +75,10 @@ top: 50%; transform: translateX(-50%) translateY(-50%) translateY(-50px); } + /* We need this style to prevent web dropdowns from shifting the display when opening */ + body { + width: 100%; + } </style> {% include "scripts.html" %} |