diff options
| author | Andres Galante <[email protected]> | 2017-09-04 19:36:12 -0300 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-09-04 15:36:12 -0700 |
| commit | bd8ab1070bb1a8e0f4afd17ceeb280ff056e2775 (patch) | |
| tree | 03279504ba11d2675f5722d79a01d28f4dd49609 | |
| parent | 59631a6f040bcd4f31fde87666e703ae0b8790e8 (diff) | |
| download | bootstrap-bd8ab1070bb1a8e0f4afd17ceeb280ff056e2775.tar.xz bootstrap-bd8ab1070bb1a8e0f4afd17ceeb280ff056e2775.zip | |
changes floats to flex on breadcrumbs (#23683)
| -rw-r--r-- | scss/_breadcrumb.scss | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scss/_breadcrumb.scss b/scss/_breadcrumb.scss index 52fadec69..5d77eeab6 100644 --- a/scss/_breadcrumb.scss +++ b/scss/_breadcrumb.scss @@ -1,15 +1,14 @@ .breadcrumb { + display: flex; + flex-wrap: wrap; padding: $breadcrumb-padding-y $breadcrumb-padding-x; margin-bottom: $breadcrumb-margin-bottom; list-style: none; background-color: $breadcrumb-bg; @include border-radius($border-radius); - @include clearfix; } .breadcrumb-item { - float: left; - // The separator between breadcrumbs (by default, a forward-slash: "/") + .breadcrumb-item::before { display: inline-block; // Suppress underlining of the separator in modern browsers |
