2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00
Files
bootstrap/site/docs/4.1/assets/scss/_anchor.scss
T
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;
}
}