Skip to content

Commit

Permalink
footer
Browse files Browse the repository at this point in the history
  • Loading branch information
wighawag committed Dec 18, 2023
1 parent 582310b commit ee4fa0c
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion web/src/lib/components/structure/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@

<style>
footer {
padding: 10px;
padding-block: 32px;
padding-inline: 64px;
display: flex;
gap: 1rem;
flex-direction: row-reverse;
Expand All @@ -66,4 +67,22 @@
background-color: var(--color-background-base-1);
}
@media (max-width: 600px) {
footer {
flex-direction: column;
justify-content: center;
}
footer .author {
margin: auto;
}
footer .links {
margin: auto;
}
}
.font-icon {
width: 1.5em;
margin-inline: 0.5em;
}
</style>

0 comments on commit ee4fa0c

Please sign in to comment.