diff options
Diffstat (limited to 'src/web/index.css')
| -rw-r--r-- | src/web/index.css | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/web/index.css b/src/web/index.css index 3c6b0d6..934c713 100644 --- a/src/web/index.css +++ b/src/web/index.css @@ -1,12 +1,19 @@ +html { + height: 100vh; + width: 100vw; +} + body { padding: 0; margin: 0; width: 100vw; height: 100vh; - touch-action: pan-y; /* Prevent default touch behavior */ + overflow: hidden; + touch-action: pan-y; } #timeline { display: block; - height: 100%; + height: 100vh; + overflow-y: auto; } |