2021-11-22 15:17:04 +01:00

18 lines
251 B
SCSS

a {
cursor: pointer;
color: $blue;
transition: 0.2s;
&:hover{
color: $dark-blue;
}
&.noline {
text-decoration: none;
}
&.help {
text-decoration: none;
font-weight: $extra-bold;
}
}