tidy up, add section header component with links + make breadcrumb component

This commit is contained in:
elise
2024-07-15 15:18:04 +02:00
parent e7fb07005c
commit ebb0ee41ff
14 changed files with 90 additions and 48 deletions

View File

@ -0,0 +1,20 @@
.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-left: 1.6rem;
&:before {
content: "→";
position: absolute;
left: 0;
}*/
}
}