hugo-theme-paradox/assets/styles/components/breadcrumbs.scss
2022-10-16 17:15:34 -05:00

17 lines
242 B
SCSS

.breadcrumbs {
display: flex;
flex-flow: row wrap;
li:not(:first-child) {
margin-left: 1rem;
margin-bottom: 1rem;
}
li::marker {
content: "> ";
}
li:first-child::marker {
content: "";
}
li:first-child {
margin-left: 0;
}
}