13 lines
166 B
SCSS
Raw Normal View History

a {
cursor: pointer;
color: $blue;
transition: 0.2s;
2021-11-19 08:52:49 +01:00
&:hover{
color: $dark-blue;
}
&.noline {
text-decoration: none;
}
}