[frontend] Add padding to the bottom of main (#616)

This way the footer doesn't touch on the content on mobile.

Signed-off-by: Sashanoraa <sasha@noraa.gay>
This commit is contained in:
Sashanoraa 2022-05-28 07:18:35 -04:00 committed by GitHub
parent 2b11d4b7b0
commit 8de9b7a34b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -18,6 +18,7 @@ main {
background: #525c66;
display: grid;
padding-top: 2rem;
padding-bottom: 2rem;
grid-template-columns: 1fr 50% 1fr;
grid-template-columns: auto min(92%, 90ch) auto;
}
@ -225,4 +226,4 @@ footer a {
section.apps .applist {
grid-template-columns: 1fr;
}
}
}

View File

@ -18,6 +18,7 @@ main {
background: $bg;
display: grid;
padding-top: 2rem;
padding-bottom: 2rem;
grid-template-columns: 1fr 50% 1fr;
grid-template-columns: auto min(92%, 90ch) auto;
@ -223,4 +224,4 @@ footer {
section.apps .applist {
grid-template-columns: 1fr;
}
}
}