frontend/src/scss/components/_header.scss

46 lines
655 B
SCSS
Raw Normal View History

// Header
2025-04-16 12:02:42 -07:00
@use "../base/settings" as *;
@use "../utilities/mixins" as *;
header {
2025-04-16 12:02:42 -07:00
padding: $section-padding;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid $grey;
h1 {
@include flatten;
a {
text-decoration: none;
color: $dark;
&:hover {
color: $yellow;
}
}
}
nav {
ul {
@include flatten(true);
display: flex;
gap: 1rem;
li {
a {
text-decoration: none;
color: $dark;
font-weight: bold;
&:hover {
color: $yellow;
}
}
}
}
2025-04-16 12:02:42 -07:00
}
}