26 lines
413 B
SCSS
26 lines
413 B
SCSS
.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;
|
|
}
|
|
}
|