File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/sass/5-Components/_components.nav.scss
.c-nav {
display: none;
@include mq(full-nav) {
display: flex;
justify-content: flex-start;
align-items: center;
}
}
.c-nav__list {
display: flex;
flex-wrap: wrap;
align-items: center;
width: 100%;
padding: 0;
list-style: none;
margin-left: 0;
}
.c-nav__item {
&:nth-last-child(n+1) {
margin-right: 5%;
}
}
.c-nav__link {
@include font-weight(semiBold);
color: rgba(palette(neutral, 0), 0.6);
text-decoration: none;
transition: color 150ms linear;
&:hover {
color: palette(primary, 200);
}
.is-active & {
color: palette(neutral, 0);
}
}
.c-nav__icon {
margin-left: 7px;
color: palette(action);
}
.c-nav__actions {
display: flex;
justify-content: center;
align-items: center;
list-style: none;
margin: 0;
}