diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-15 08:04:15 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-15 08:04:15 -0800 |
| commit | c41af66cbb76c4c49269753d981b99905a679437 (patch) | |
| tree | 46ba27877b73ee41a4c125c88c9bc9360811ce0c /frontend/src/index.css | |
| parent | 6e28d1530aa08b878f5082bbcd85a95f84f830e8 (diff) | |
| download | neko-c41af66cbb76c4c49269753d981b99905a679437.tar.gz neko-c41af66cbb76c4c49269753d981b99905a679437.tar.bz2 neko-c41af66cbb76c4c49269753d981b99905a679437.zip | |
Fix horizontal scrolling on iPad and improve mobile responsiveness
Diffstat (limited to 'frontend/src/index.css')
| -rw-r--r-- | frontend/src/index.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/frontend/src/index.css b/frontend/src/index.css index c60ddb6..acabee9 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -4,6 +4,16 @@ --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif; } +html, +body, +#root { + width: 100%; + height: 100%; + margin: 0; + padding: 0; + overflow: hidden; +} + body { font-family: var(--font-body); } @@ -99,9 +109,7 @@ h5, } body { - margin: 0; min-width: 320px; - min-height: 100vh; } h1 { |
