27 lines
441 B
SCSS
27 lines
441 B
SCSS
|
.breadcrumbs {
|
||
|
display: flex;
|
||
|
flex-flow: row wrap;
|
||
|
padding: 0;
|
||
|
li:not(:first-child) {
|
||
|
margin-inline-start: 1.5rem;
|
||
|
margin-block-end: 1rem;
|
||
|
}
|
||
|
li::marker {
|
||
|
content: "/ ";
|
||
|
}
|
||
|
li:first-child::marker {
|
||
|
content: "";
|
||
|
}
|
||
|
li:first-child {
|
||
|
margin-inline-start: 0;
|
||
|
}
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
.breadcrumb-nav {
|
||
|
.title {
|
||
|
margin-block-end: 0.5em;
|
||
|
color: var(--ui-text-muted);
|
||
|
text-transform: uppercase;
|
||
|
font-weight: 900;
|
||
|
}
|
||
|
}
|