website/assets/import/include.scss

14 lines
230 B
SCSS
Raw Normal View History

2020-11-09 16:12:02 +01:00
@mixin a-underlined {
a {
border-bottom: 1px solid;
color: $white;
2020-11-09 20:16:31 +01:00
margin: -2px 0;
padding: 2px 0;
2020-11-09 16:12:02 +01:00
transition: border .2s, color .2s;
&:hover {
color: $red;
text-decoration: none;
}
}
}