diff options
author | Joris | 2022-07-09 16:21:11 +0200 |
---|---|---|
committer | Joris | 2022-07-09 16:21:11 +0200 |
commit | 56dd2ec807eda8dc328a92e1c8cf88fcaf786037 (patch) | |
tree | e583fb64fa465c7b259d5da194d9f08eaee2fbc9 /public | |
parent | f6be30687b400714e114b4437e25fd294e2f6d4c (diff) |
Allow to scroll vertically on the form
Diffstat (limited to 'public')
-rw-r--r-- | public/main.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/public/main.css b/public/main.css index 6bc1701..3c850c2 100644 --- a/public/main.css +++ b/public/main.css @@ -60,7 +60,7 @@ body { font-family: sans-serif; margin: 0; font-size: var(--font-size-bear); - overflow: hidden; + overflow-x: hidden; position: relative; } @@ -80,6 +80,7 @@ header { .g-Form { display: flex; margin-top: var(--spacing-elephant); + margin-bottom: var(--spacing-dog); flex-direction: column; row-gap: var(--spacing-horse); align-items: center; @@ -116,7 +117,7 @@ header { position: relative; font-family: chords; font-size: var(--font-size-whale); - overflow: visible; + overflow-x: visible; } .g-Play--Shift { |