2021-11-10 14:29:49 +01:00

18 lines
258 B
SCSS

a {
cursor: pointer;
color: $blue;
transition: 0.2s;
&:hover {
color: $dark-blue !important;
}
&.menu-left {
color: inherit;
text-decoration: none;
}
&.noline {
text-decoration: none;
}
}