mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-02 14:24:19 +01:00
22062ed9d7
* Fix missing bullets from table of contents top level * Add .text-muted to toc for lighter bullets
21 lines
345 B
SCSS
21 lines
345 B
SCSS
// stylelint-disable selector-max-type, selector-max-combinators, selector-max-compound-selectors
|
|
|
|
.bd-toc nav {
|
|
padding-top: .125em;
|
|
padding-bottom: .125em;
|
|
border-left: .25em solid $gray-200;
|
|
|
|
> ul {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
li ul li {
|
|
margin-bottom: .25rem;
|
|
list-style-type: disc;
|
|
}
|
|
|
|
a code {
|
|
font: inherit;
|
|
}
|
|
}
|