1
0
web-semprace/sass/header.scss

39 lines
544 B
SCSS

nav {
display: flex;
justify-content: space-between;
background-color: var(--clr-Melon);
padding: 1rem var(--container-size);
font-family: 'coolvetica';
.nav-right, .nav-left {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-right > a {
display: flex;
}
.nav-btn {
display: none;
}
a {
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
font-size: normal;
color: var(--clr-Murrey);
}
img {
height: 2rem;
}
.nav-left img {
height: 4rem;
}
}