Skip to content

Commit

Permalink
footer fix for desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
simeydotme committed Sep 8, 2023
1 parent 723453c commit a45a8a6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/Footer/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ const { path } = Astro.props
<style>
footer {
margin-top: auto;
padding: 2rem 2rem calc( var(--theme-navbar-height ) + 2rem);
padding: 2rem;
border-top: 3px solid var(--theme-divider);
}
@media (max-width: 49.999em) {
footer {
padding: 2rem 2rem calc( var(--theme-navbar-height ) + 2rem);
}
}
</style>

0 comments on commit a45a8a6

Please sign in to comment.