aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/App.css
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-15 08:04:15 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-15 08:04:15 -0800
commitc41af66cbb76c4c49269753d981b99905a679437 (patch)
tree46ba27877b73ee41a4c125c88c9bc9360811ce0c /frontend/src/App.css
parent6e28d1530aa08b878f5082bbcd85a95f84f830e8 (diff)
downloadneko-c41af66cbb76c4c49269753d981b99905a679437.tar.gz
neko-c41af66cbb76c4c49269753d981b99905a679437.tar.bz2
neko-c41af66cbb76c4c49269753d981b99905a679437.zip
Fix horizontal scrolling on iPad and improve mobile responsiveness
Diffstat (limited to 'frontend/src/App.css')
-rw-r--r--frontend/src/App.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/App.css b/frontend/src/App.css
index 0f24085..2e74476 100644
--- a/frontend/src/App.css
+++ b/frontend/src/App.css
@@ -12,6 +12,8 @@ body {
display: flex;
flex-direction: column;
height: 100vh;
+ height: 100dvh;
+ width: 100%;
overflow: hidden;
/* Prevent body scroll */
}
@@ -23,6 +25,7 @@ body {
flex: 1;
overflow: hidden;
position: relative;
+ width: 100%;
}
.dashboard-sidebar {
@@ -42,8 +45,10 @@ body {
.dashboard-main {
flex: 1;
+ min-width: 0;
padding: 2rem;
overflow-y: auto;
+ overflow-x: hidden;
background: var(--bg-color);
margin-left: 0;
}