You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aSkelly/scss/base/_anchor.scss

18 lines
279 B
SCSS

@use '../utilities/main_utilities' as *;
/* Links */
a{
color: $color-link;
display: inline-block;
font-weight: bold;
text-decoration: underline;
}
a:hover {
filter: brightness($hover-brightness);
}
a:active {
filter: brightness($active-brightness);
}