0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-30 12:24:19 +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 21:00:47 +02:00
font-weight: normal;
color: rgba($link-color, .5);
2016-01-04 03:10:22 +01:00
transition: color .16s linear;
2015-06-19 08:56:43 +02:00
2017-05-29 21:00:47 +02:00
&:hover {
color: $link-color;
text-decoration: none;
}
2015-06-19 08:56:43 +02:00
}