make separate component for section footer to show links below section content on mobile
This commit is contained in:
25
web/src/components/general/sectionFooter.module.scss
Normal file
25
web/src/components/general/sectionFooter.module.scss
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user