1
Fork 0

Change spacing.

This commit is contained in:
Bauke 2022-03-28 14:42:34 +02:00
parent 107a2b762e
commit d0e08574cb
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
4 changed files with 9 additions and 8 deletions

View File

@ -3,5 +3,5 @@
.page-footer {
@include mixins.responsive-container;
margin-top: 1rem;
margin-bottom: 2rem;
}

View File

@ -3,5 +3,6 @@
.page-header {
@include mixins.responsive-container;
padding: 1rem;
border-bottom: 2px dotted var(--foreground-1);
margin-bottom: 2rem;
}

View File

@ -3,11 +3,11 @@
.page-main {
@include mixins.responsive-container;
padding: 1rem;
margin-bottom: 2rem;
.contact-links {
display: grid;
gap: 1rem;
gap: 2rem;
grid-template-columns: repeat(2, 1fr);
@media (max-width: mixins.$medium-breakpoint) {

View File

@ -12,7 +12,7 @@ body {
color: var(--foreground-1);
font-family: sans-serif;
font-size: 2rem;
padding: 1rem;
padding: 2rem;
}
a {
@ -39,9 +39,9 @@ button {
}
.divider {
border-top: 2px solid var(--foreground-1);
margin-bottom: 1rem;
margin-top: 1rem;
border-top: 2px dotted var(--foreground-1);
margin-bottom: 2rem;
margin-top: 2rem;
}
@use 'components/errors';