17 lines
226 B
SCSS
17 lines
226 B
SCSS
|
.breadcrumb {
|
||
|
list-style: none;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
align-items: baseline;
|
||
|
}
|
||
|
|
||
|
.breadcrumb li {
|
||
|
display: inline;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
.breadcrumb li + li:before {
|
||
|
content: ">";
|
||
|
padding: 0.3rem;
|
||
|
}
|