33 lines
No EOL
521 B
SCSS
33 lines
No EOL
521 B
SCSS
.breadcrumbs {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
padding: 0;
|
|
li:not(:first-child) {
|
|
margin-inline-start: 1rem;
|
|
margin-block-end: 1rem;
|
|
}
|
|
li {
|
|
list-style: none;
|
|
}
|
|
li:not(:first-child) {
|
|
&:before {
|
|
content: " / ";
|
|
}
|
|
a {
|
|
display: inline-block;
|
|
margin-inline-start: 0.5rem;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
} |