diff options
| author | Prateek Goel <[email protected]> | 2017-08-11 06:59:21 +0100 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-08-10 22:59:21 -0700 |
| commit | 9497c2164c04ee160b7de90d3eb66c7d04b70a0b (patch) | |
| tree | 4faec112c4d67c770cbe3a015a5222a3b19d0df7 | |
| parent | c5903ddfd65fe507b416f0cb9ddc9d181614e724 (diff) | |
| download | bootstrap-9497c2164c04ee160b7de90d3eb66c7d04b70a0b.tar.xz bootstrap-9497c2164c04ee160b7de90d3eb66c7d04b70a0b.zip | |
Add margin variable for breadcrumb (#23138)
* add margin variable for breadcrumb
* add margin variable for breadcrumb correction
* breadcrumb margin variable changes after review
| -rw-r--r-- | scss/_breadcrumb.scss | 2 | ||||
| -rw-r--r-- | scss/_variables.scss | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/scss/_breadcrumb.scss b/scss/_breadcrumb.scss index 2bc0e2086..52fadec69 100644 --- a/scss/_breadcrumb.scss +++ b/scss/_breadcrumb.scss @@ -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); diff --git a/scss/_variables.scss b/scss/_variables.scss index dc8eaf198..8990ad75e 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -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; |
