0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-13 01:08:58 +01:00
Bootstrap/site/docs/4.1/assets/scss/_anchor.scss
XhmikosR b04f97f60b Replace anchor.js with jekyll-anchor-headings.
This allows us to generate the anchor links on build time.

https://github.com/allejo/jekyll-anchor-headings
2018-11-20 11:47:10 +02:00

16 lines
248 B
SCSS

.bd-anchor {
padding-left: .25rem;
font-weight: 400;
color: $link-color;
opacity: 0;
@include transition(opacity .16s linear);
:hover > &,
&:hover,
&:focus {
color: $link-color;
text-decoration: none;
opacity: 1;
}
}