1
0
web-semprace/sass/header.scss

29 lines
520 B
SCSS

nav {
display: flex;
justify-content: space-between;
background-color: var(--clr-melon);
padding: 1rem var(--container-size);
.nav-right, .nav-left {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-right > a {
display: flex;
}
a {
text-decoration: none;
font-size: 1.5rem;
font-weight: bold;
color: var(--clr-murrey);
}
img {
height: 2rem;
}
.nav-left img {
height: 4rem;
}
}