mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Add margin variable for breadcrumb (#23138)
* add margin variable for breadcrumb * add margin variable for breadcrumb correction * breadcrumb margin variable changes after review
This commit is contained in:
parent
c5903ddfd6
commit
9497c2164c
2 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
.breadcrumb {
|
||||
padding: $breadcrumb-padding-y $breadcrumb-padding-x;
|
||||
margin-bottom: 1rem;
|
||||
margin-bottom: $breadcrumb-margin-bottom;
|
||||
list-style: none;
|
||||
background-color: $breadcrumb-bg;
|
||||
@include border-radius($border-radius);
|
||||
|
|
|
@ -790,6 +790,8 @@ $breadcrumb-padding-y: .75rem !default;
|
|||
$breadcrumb-padding-x: 1rem !default;
|
||||
$breadcrumb-item-padding: .5rem !default;
|
||||
|
||||
$breadcrumb-margin-bottom: 1rem !default;
|
||||
|
||||
$breadcrumb-bg: $gray-200 !default;
|
||||
$breadcrumb-divider-color: $gray-600 !default;
|
||||
$breadcrumb-active-color: $gray-600 !default;
|
||||
|
|
Loading…
Reference in a new issue