discourse/app/assets/stylesheets/mobile/menu-panel.scss
Penar Musaraj fb2e24a77a
UX: Fix unreachable buttons on menus in Safari iOS (#11458)
Safari overlays its own nav at the bottom 10% or so of the screen. This
makes buttons in that area virtually unclickable, so to ensure buttons
there are reachable, we need to add enough bottom padding to menu panels.
2020-12-10 08:11:58 -05:00

39 lines
767 B
SCSS

.hamburger-panel .menu-panel.slide-in {
left: 0;
.panel-body {
display: block;
}
.panel-body-contents {
max-height: unset;
}
}
.header-cloak {
height: 100vh;
width: 100vw;
position: fixed;
background-color: black;
opacity: 0.5;
top: 0;
left: 0;
display: none;
touch-action: pan-y pinch-zoom;
&.animate {
transition: opacity 0.2s ease-out;
}
}
.user-menu .quick-access-panel.quick-access-profile li:not(.show-all) {
border-bottom: 1px solid var(--primary-low);
a {
// accounts for menu "ears" 4px + border 1px
padding: 0.75em calc(0.5em + 4px + 1px);
}
}
.panel-body-contents {
// 2em padding very useful for iOS Safari's overlayed bottom nav
padding-bottom: calc(env(safe-area-inset-bottom) + 2em);
}