24 lines
349 B
SCSS
24 lines
349 B
SCSS
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
padding: var(--spacing-sitepadding);
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.logo {
|
|
font-size: 3rem;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.siteMenu {
|
|
ul {
|
|
list-style: none;
|
|
display: flex;
|
|
gap: var(--spacing-sitepadding);
|
|
}
|
|
} |