mirror of
https://github.com/tabler/tabler.git
synced 2025-12-26 11:16:12 +04:00
33 lines
449 B
SCSS
33 lines
449 B
SCSS
.breadcrumb {
|
|
padding: 0;
|
|
margin: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.breadcrumb-item {
|
|
&.active {
|
|
a {
|
|
color: inherit;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
@each $name, $symbol in $breadcrumb-variants {
|
|
.breadcrumb-#{$name} {
|
|
.breadcrumb-item + .breadcrumb-item:before {
|
|
content: $symbol;
|
|
}
|
|
}
|
|
}
|
|
|
|
.breadcrumb-alternate {
|
|
a {
|
|
color: $text-muted;
|
|
}
|
|
|
|
.breadcrumb-item.active {
|
|
color: $body-color;
|
|
}
|
|
}
|