Add an offset before content

This commit is contained in:
ItsDrike 2021-08-25 22:25:38 +02:00
parent 2d076e318a
commit 34927a8d00
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD

View file

@ -87,3 +87,10 @@ footer {
}
}
}
#main {
margin-top: $spacer * 5;
// screen height - top padding - navbar height - footer margin
min-height: calc(100vh - #{$spacer * 5} - #{$navbar-height} - #{$spacer * 3});
}