This commit is contained in:
2026-06-09 13:23:54 -04:00
parent 1608328216
commit f98d37fae4
3 changed files with 14 additions and 17 deletions
@@ -6,6 +6,12 @@
main { main {
flex: 1; flex: 1;
padding-bottom: env(safe-area-inset-bottom, 0px);
padding-right: env(safe-area-inset-right, 0px);
}
.top-row {
padding-right: env(safe-area-inset-right, 0px);
} }
.sidebar { .sidebar {
@@ -22,6 +22,7 @@
.navbar-brand { .navbar-brand {
font-size: 1.1rem; font-size: 1.1rem;
padding-left: env(safe-area-inset-left, 0px);
} }
.bi { .bi {
+1 -11
View File
@@ -81,21 +81,11 @@ h1:focus {
} }
.status-bar-safe-area { .status-bar-safe-area {
display: none;
}
@supports (-webkit-touch-callout: none) {
.status-bar-safe-area {
display: flex; display: flex;
position: sticky; position: sticky;
top: 0; top: 0;
height: env(safe-area-inset-top); height: env(safe-area-inset-top, 0px);
background-color: #f7f7f7; background-color: #f7f7f7;
width: 100%; width: 100%;
z-index: 1; z-index: 1;
}
.flex-column, .navbar-brand {
padding-left: env(safe-area-inset-left);
}
} }