hugo-theme-paradox/assets/styles/components/breadcrumbs.scss

23 lines
309 B
SCSS
Raw Normal View History

2022-10-16 22:15:34 +00:00
.breadcrumbs {
display: flex;
flex-flow: row wrap;
2022-10-17 14:46:58 +00:00
li {
margin-bottom: 1rem;
2022-10-17 15:25:33 +00:00
margin-right: 0.5rem;
2022-10-17 14:46:58 +00:00
}
2022-10-16 22:15:34 +00:00
li:not(:first-child) {
margin-left: 1rem;
2022-10-17 15:25:33 +00:00
a {
margin-left: 0.5rem;
}
2022-10-16 22:15:34 +00:00
}
li::marker {
content: "> ";
}
li:first-child::marker {
content: "";
}
li:first-child {
margin-left: 0;
}
}