diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/main.css | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/public/main.css b/public/main.css index fc0850a..da0b04e 100644 --- a/public/main.css +++ b/public/main.css @@ -1,8 +1,13 @@ -body { margin: 0; } +html { + box-sizing: border-box; + overflow-y: scroll; +} -/* Box sizing */ -html { box-sizing: border-box; } -*, *:before, *:after { box-sizing: inherit; } +*, *:before, *:after { + box-sizing: inherit; +} + +body { margin: 0; } @media screen and (min-width: 700px) { .page { |