wiki.trwnh.com/assets/styles/components/breadcrumbs.scss

27 lines
441 B
SCSS
Raw Normal View History

2022-11-26 14:56:23 +00:00
.breadcrumbs {
display: flex;
flex-flow: row wrap;
2022-12-24 09:48:04 +00:00
padding: 0;
2022-11-26 14:56:23 +00:00
li:not(:first-child) {
margin-inline-start: 1.5rem;
margin-block-end: 1rem;
2022-11-26 14:56:23 +00:00
}
li::marker {
content: "/ ";
}
li:first-child::marker {
content: "";
}
li:first-child {
margin-inline-start: 0;
2022-11-26 14:56:23 +00:00
}
font-family: monospace;
}
.breadcrumb-nav {
.title {
margin-block-end: 0.5em;
2022-11-26 14:56:23 +00:00
color: var(--ui-text-muted);
text-transform: uppercase;
font-weight: 900;
}
}