0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-10 03:46:13 +01:00
Bootstrap/assets/scss/_anchor.scss

13 lines
211 B
SCSS
Raw Normal View History

// scss-lint:disable ImportantRule
.anchorjs-link {
2017-05-29 12:00:47 -07:00
font-weight: normal;
color: rgba($link-color, .5);
2016-01-03 18:10:22 -08:00
transition: color .16s linear;
2015-06-18 23:56:43 -07:00
2017-05-29 12:00:47 -07:00
&:hover {
color: $link-color;
text-decoration: none;
}
2015-06-18 23:56:43 -07:00
}