1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00
Files
tabler/scss/ui/_breadcrumbs.scss
2020-01-26 23:39:00 +01:00

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;
}
}