reduce width on mobile devices and add padding

This commit is contained in:
Amolith 2023-01-17 10:24:25 -05:00
parent 6d9ca9b2af
commit ba709bb962
Signed by: Amolith
GPG Key ID: 8AE30347CE28D101
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,6 @@
html {
scroll-behavior: smooth;
padding: 0 30px;
}
body {
font-family: Heliotrope;
@ -172,3 +173,9 @@ input[type="text"]:focus {
font-style: italic;
}
}
@media (max-width: 55em) {
html {
max-width: 650px;
}
}