10 lines
149 B
SCSS
10 lines
149 B
SCSS
.breadcrumbs {
|
|
list-style: none;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
gap: 0.5em;
|
|
li:not(:first-child):before {
|
|
content: '»';
|
|
}
|
|
} |