Files
BimAI/BimAI.UI.Mobile/wwwroot/css/app.css

47 lines
1.1 KiB
CSS
Raw Normal View History

#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
2025-06-23 15:53:46 +02:00
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
}
2025-06-23 15:53:46 +02:00
/* iOS Safe Area Support */
@supports (padding-top: env(safe-area-inset-top)) {
.mud-appbar {
padding-top: env(safe-area-inset-top) !important;
height: calc(64px + env(safe-area-inset-top)) !important;
}
2025-06-23 15:53:46 +02:00
.mud-drawer {
padding-top: env(safe-area-inset-top);
}
.mud-main-content {
padding-top: calc(64px + env(safe-area-inset-top)) !important;
}
}
2025-06-23 15:53:46 +02:00
/* Fallback for older devices */
@media only screen and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) {
.mud-appbar {
padding-top: 44px !important;
height: calc(64px + 44px) !important;
}
2025-06-23 15:53:46 +02:00
.mud-main-content {
padding-top: calc(64px + 44px) !important;
}
}