feat: increase spacing around border

This commit is contained in:
2024-07-23 17:34:14 +01:00
parent d8500d8115
commit df1e1df440

View File

@@ -35,6 +35,13 @@ body {
margin: 0; margin: 0;
background-color: var(--base); background-color: var(--base);
} }
@media (min-width: 768px) {
body {
width: calc(100% - 8rem - 2px);
height: calc(100vh - 10rem - 2px);
padding: 4rem;
}
}
h1, h1,
h2, h2,
@@ -65,6 +72,11 @@ footer {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
@media (min-width: 768px) {
footer {
padding: 2rem 0;
}
}
footer > span { footer > span {
color: var(--text); color: var(--text);