diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-12-07 00:40:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 00:40:18 +0100 |
commit | 76454cc63803f3619c6c2352abac9646004e32c4 (patch) | |
tree | 998fe7d0afcc866862c66607b8454500953b2189 /app/javascript/styles | |
parent | 3d40282f1b7a281d29260c3f7567ccafc9719c2b (diff) |
Fix UI header overflow on mobile (#21783)
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 79a9a4bd7..318e4b3de 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -2217,6 +2217,7 @@ $ui-header-height: 55px; z-index: 2; justify-content: space-between; align-items: center; + overflow: hidden; &__logo { display: inline-flex; @@ -2233,10 +2234,15 @@ $ui-header-height: 55px; align-items: center; gap: 10px; padding: 0 10px; + overflow: hidden; .button { flex: 0 0 auto; } + + .button-tertiary { + flex-shrink: 1; + } } } |