mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
fix: Prevent mobile navbar from overscrolling (#35074)
This commit is contained in:
parent
b1fe35d7d2
commit
102a7635d6
|
@ -96,6 +96,7 @@ $media-modal-media-max-width: 100%;
|
|||
$media-modal-media-max-height: 80%;
|
||||
|
||||
$no-gap-breakpoint: 1175px;
|
||||
$mobile-menu-breakpoint: 760px;
|
||||
$mobile-breakpoint: 630px;
|
||||
$no-columns-breakpoint: 600px;
|
||||
|
||||
|
|
|
@ -2863,17 +2863,18 @@ a.account__display-name {
|
|||
}
|
||||
|
||||
.ui__navigation-bar {
|
||||
position: sticky;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
background: var(--background-color);
|
||||
backdrop-filter: var(--background-filter);
|
||||
border-top: 1px solid var(--background-border-color);
|
||||
z-index: 3;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
gap: 8px;
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
background: var(--background-color);
|
||||
backdrop-filter: var(--background-filter);
|
||||
border-top: 1px solid var(--background-border-color);
|
||||
|
||||
.layout-multiple-columns & {
|
||||
display: none;
|
||||
|
@ -2984,11 +2985,20 @@ a.account__display-name {
|
|||
}
|
||||
|
||||
.ui {
|
||||
--mobile-bottom-nav-height: 55px;
|
||||
--last-content-item-border-width: 2px;
|
||||
|
||||
flex: 0 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
@media (max-width: #{$mobile-menu-breakpoint - 1}) {
|
||||
padding-bottom: calc(
|
||||
var(--mobile-bottom-nav-height) - var(--last-content-item-border-width)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
.drawer {
|
||||
|
|
Loading…
Reference in New Issue
Block a user