website/assets/import/include.scss

14 lines
226 B
SCSS
Raw Normal View History

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