hugo-theme-paradox/assets/styles/components/breadcrumbs.scss
2022-10-17 10:25:33 -05:00

23 lines
309 B
SCSS

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