1
0
web-semprace/sass/header.scss

27 lines
471 B
SCSS
Raw Normal View History

2023-11-19 00:19:59 +01:00
nav {
display: flex;
2023-11-20 16:52:40 +01:00
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;
}
2023-11-19 00:19:59 +01:00
a {
text-decoration: none;
font-size: 1.5rem;
2023-11-20 16:52:40 +01:00
font-weight: bold;
color: var(--clr-murrey);
}
img {
height: 2rem;
}
.nav-left img {
height: 4rem;
2023-11-19 00:19:59 +01:00
}
}