mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-13 01:08:58 +01: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;
|
|
}
|
|
}
|