1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-29 14:34:37 +04:00
Files
tabler/scss/ui/_breadcrumbs.scss
T
2019-07-09 19:54:30 +02:00

29 lines
393 B
SCSS

.breadcrumb {
margin: 0;
padding: 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;
}
}