Updated mobile UI

Using dvh and vh as fallback for mobile browsers.
This commit is contained in:
Donald Zou
2024-10-03 21:20:15 +08:00
parent c414725f12
commit 5f46f54dfd
7 changed files with 66 additions and 13 deletions

View File

@@ -30,6 +30,17 @@
}
}
#app{
width: 100%;
height: 100vh;
}
@supports (height: 100dvh) {
#app{
height: 100dvh;
}
}
/*
* Sidebar
*/