18 lines
258 B
SCSS
Raw Normal View History

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