forked from laurens/fediversity_website
17 lines
227 B
SCSS
17 lines
227 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.1rem;
|
|
}
|