21 lines
334 B
SCSS
21 lines
334 B
SCSS
.sectionHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
a {
|
|
display: block;
|
|
font-family: var(--font-serif);
|
|
margin-bottom: var(--spacing-s);
|
|
position: relative;
|
|
padding-right: 1.4rem;
|
|
|
|
&:after {
|
|
content: "→";
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
}
|
|
}
|
|
|