fix: weather modal, remove tasks/savings, fix HA controls, safe-area BottomNav
All checks were successful
Deploy to Coolify / deploy (push) Successful in 3s

This commit is contained in:
Cosmo
2026-04-22 10:42:41 +00:00
parent a2fb233363
commit 98fdcafb73
6 changed files with 220 additions and 162 deletions

View File

@@ -235,3 +235,16 @@ input[type='range']::-moz-range-thumb {
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Safe area support for tablets/mobile */
@supports (padding: max(0px)) {
body {
padding-bottom: env(safe-area-inset-bottom, 0px);
}
}
/* Ensure 100dvh works properly */
.h-dvh {
height: 100dvh;
height: 100svh;
}