about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBotao Wang <wxt2005@gmail.com>2023-02-21 18:06:13 +0900
committerGitHub <noreply@github.com>2023-02-21 10:06:13 +0100
commit7adde24a95218048f14c29bee0d25afaeae99509 (patch)
treee0e56e112e534e34b30c18915d491f36dc703554
parent513316f768701fa3450da25d52e262f1adbfed4c (diff)
Fix sidebar cut-off on small screens in admin UI (#23764)
-rw-r--r--app/javascript/styles/mastodon/admin.scss2
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;