mirror of
https://github.com/tabler/tabler.git
synced 2026-01-11 23:20:10 +04:00
25 lines
316 B
SCSS
25 lines
316 B
SCSS
.breadcrumb {
|
||
|
||
}
|
||
|
||
.breadcrumb-list {
|
||
list-style-type: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
display: flex;
|
||
font-size: $font-size-h6;
|
||
}
|
||
|
||
.breadcrumb-item {
|
||
color: $color-muted-light;
|
||
|
||
&:not(:first-child)::before {
|
||
content: '›';
|
||
margin: 0 .5rem;
|
||
}
|
||
}
|
||
|
||
.breadcrumb-link {
|
||
color: $color-muted-light;
|
||
}
|