mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-08 17:22:31 +03:00
b04f97f60b
This allows us to generate the anchor links on build time. https://github.com/allejo/jekyll-anchor-headings
16 lines
248 B
SCSS
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;
|
|
}
|
|
}
|