make separate component for section footer to show links below section content on mobile

This commit is contained in:
elise
2024-08-11 11:14:54 +02:00
parent bb2c12f9f6
commit d8ae1ff905
9 changed files with 68 additions and 4 deletions

View File

@ -0,0 +1,25 @@
.sectionFooter {
margin-top: var(--spacing-s);
display: flex;
justify-content: flex-end;
align-items: center;
flex-wrap: wrap;
a {
display: block;
font-family: var(--font-serif);
position: relative;
padding-right: 1.4rem;
&:after {
content: "";
position: absolute;
right: 0;
}
}
display: none;
@media (max-width: 800px) {
display: flex;
}
}