8 lines
118 B
SCSS
8 lines
118 B
SCSS
|
.breadcrumbs {
|
||
|
display: flex;
|
||
|
flex-flow: row wrap;
|
||
|
gap: 0.5em;
|
||
|
li:not(:first-child):before {
|
||
|
content: '»';
|
||
|
}
|
||
|
}
|