mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
The leave channel button is cut off when accessing the channel settings page on mobile. This change adds additional padding to the bottom of the channel settings page when accessing via iPad/PWA/Hub.
10 lines
204 B
SCSS
Vendored
10 lines
204 B
SCSS
Vendored
.c-channel-settings {
|
|
min-width: 320px;
|
|
|
|
html.footer-nav-ipad &,
|
|
html.footer-nav-visible & {
|
|
padding-bottom: calc(
|
|
env(safe-area-inset-bottom) + var(--footer-nav-height, 0px)
|
|
);
|
|
}
|
|
}
|