mirror of
https://github.com/trwnh/hugo-theme-paradox.git
synced 2024-11-14 23:41:20 +00:00
23 lines
309 B
SCSS
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;
|
|
}
|
|
} |