source: trip-planner-front/node_modules/bootstrap/scss/_breadcrumb.scss@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 923 bytes
Line 
1.breadcrumb {
2 display: flex;
3 flex-wrap: wrap;
4 padding: $breadcrumb-padding-y $breadcrumb-padding-x;
5 margin-bottom: $breadcrumb-margin-bottom;
6 @include font-size($breadcrumb-font-size);
7 list-style: none;
8 background-color: $breadcrumb-bg;
9 @include border-radius($breadcrumb-border-radius);
10}
11
12.breadcrumb-item {
13 // The separator between breadcrumbs (by default, a forward-slash: "/")
14 + .breadcrumb-item {
15 padding-left: $breadcrumb-item-padding-x;
16
17 &::before {
18 float: left; // Suppress inline spacings and underlining of the separator
19 padding-right: $breadcrumb-item-padding-x;
20 color: $breadcrumb-divider-color;
21 content: var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider)) #{"/* rtl:"} var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider-flipped)) #{"*/"};
22 }
23 }
24
25 &.active {
26 color: $breadcrumb-active-color;
27 }
28}
Note: See TracBrowser for help on using the repository browser.