refactor(style): ensure body sets min height to 100vh

This commit is contained in:
Price Hiller 2023-08-27 22:30:16 -05:00
parent e470b42182
commit 27206068d4
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -59,7 +59,6 @@
* webpage was too narrow (Mobile devices). */
html,
body {
max-width: 100vw;
overflow-x: hidden;
padding: 0;
margin: 0;
@ -71,6 +70,7 @@ html {
}
body {
min-height: 100vh;
padding-top: var(--navbar-height);
line-height: 1.6;
display: flex;