22 lines
316 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;
&.undertable {
margin-left: 17px;
}
}
&.help {
text-decoration: none;
font-weight: $extra-bold;
}
}