Dmitriy Pleshevskiy
890c1f74ed
All checks were successful
continuous-integration/drone/push Build is passing
Closes #1 Reviewed-on: #2 Co-authored-by: Dmitriy Pleshevskiy <dmitriy@ideascup.me> Co-committed-by: Dmitriy Pleshevskiy <dmitriy@ideascup.me>
21 lines
410 B
SCSS
21 lines
410 B
SCSS
|
|
.main-menu {
|
|
@extend .row-sta-sta, .gap-h-1;
|
|
|
|
> a {
|
|
@extend .pad-0x5, .anim;
|
|
|
|
// TODO: move to atoms
|
|
color: var(--color-brand-blue);
|
|
border-radius: 6px;
|
|
border: 1px solid var(--color-brand-blue);
|
|
text-decoration: none;
|
|
|
|
&:hover,
|
|
&[aria-current]:not([aria-current=""]) {
|
|
color: var(--default-color-white);
|
|
background-color: var(--color-brand-blue);
|
|
}
|
|
}
|
|
}
|
|
|