// // Base styles // .breadcrumb { display: flex; flex-wrap: wrap; padding: $breadcrumb-padding-y $breadcrumb-padding-x; margin-bottom: $breadcrumb-margin-bottom; @include font-size($breadcrumb-font-size); list-style: none; @include border-radius($breadcrumb-border-radius); @include borders($breadcrumb-borders); @include themes($breadcrumb-theme-map, $create: parent) { background-color: themes-get-value("breadcrumb-bg"); border-color: themes-get-value("breadcrumb-border-color"); } } .breadcrumb-item { display: flex; // The separator between breadcrumbs (by default, a forward-slash: "/") + .breadcrumb-item { @include ltr { padding-left: $breadcrumb-item-padding; } @include rtl { padding-right: $breadcrumb-item-padding; } &::before { display: inline-block; // Suppress underlining of the separator in modern browsers @include themes($breadcrumb-theme-map, $create: parent) { color: themes-get-value("breadcrumb-divider-color"); } content: escape-svg($breadcrumb-divider); @include ltr { padding-right: $breadcrumb-item-padding; } @include rtl { padding-left: $breadcrumb-item-padding; } } } // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built // without `