Re-add margins on mobile

This commit is contained in:
BBaoVanC 2022-04-04 21:54:52 -05:00
parent 37c04460b5
commit 586bea37d5
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 2 additions and 1 deletions

View File

@ -326,6 +326,7 @@
/* Basic elements */
html {
scroll-behavior: smooth;
margin: 0 20px;
}
@media screen and (prefers-reduced-motion: reduce) {
@ -338,7 +339,7 @@ body {
background-color: var(--background);
color: var(--text-normal);
font-family: "Open Sans", "Noto Sans", sans-serif;
margin: 20px auto;
margin: 0 auto 20px;
max-width: 720px;
overflow-wrap: break-word;
}