diff options
author | Botao Wang <wxt2005@gmail.com> | 2023-02-21 18:06:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-21 10:06:13 +0100 |
commit | 7adde24a95218048f14c29bee0d25afaeae99509 (patch) | |
tree | e0e56e112e534e34b30c18915d491f36dc703554 /app/javascript | |
parent | 513316f768701fa3450da25d52e262f1adbfed4c (diff) |
Fix sidebar cut-off on small screens in admin UI (#23764)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/styles/mastodon/admin.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/admin.scss b/app/javascript/styles/mastodon/admin.scss index d9e45fb10..d54d6634d 100644 --- a/app/javascript/styles/mastodon/admin.scss +++ b/app/javascript/styles/mastodon/admin.scss @@ -384,7 +384,7 @@ $content-width: 840px; position: fixed; z-index: 10; width: 100%; - height: calc(100vh - 56px); + height: calc(100% - 56px); left: 0; bottom: 0; overflow-y: auto; |