13 lines
211 B
SCSS
13 lines
211 B
SCSS
|
// scss-lint:disable ImportantRule
|
||
|
|
||
|
.anchorjs-link {
|
||
|
font-weight: normal;
|
||
|
color: rgba($link-color, .5);
|
||
|
transition: color .16s linear;
|
||
|
|
||
|
&:hover {
|
||
|
color: $link-color;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|