mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
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;
|
|
}
|
|
}
|