20 lines
397 B
CSS
20 lines
397 B
CSS
.status-bar-safe-area {
|
|
display: none;
|
|
}
|
|
|
|
@supports (-webkit-touch-callout: none) {
|
|
.status-bar-safe-area {
|
|
display: flex;
|
|
position: sticky;
|
|
top: 0;
|
|
height: env(safe-area-inset-top);
|
|
background-color: #f7f7f7;
|
|
width: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.flex-column, .navbar-brand {
|
|
padding-left: env(safe-area-inset-left);
|
|
}
|
|
}
|