mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 17:34:02 +08:00
20 lines
275 B
SCSS
20 lines
275 B
SCSS
|
.d-breadcrumbs {
|
||
|
display: flex;
|
||
|
margin: 1em 0 0.5em 0;
|
||
|
|
||
|
&__item {
|
||
|
list-style-type: none;
|
||
|
}
|
||
|
|
||
|
&__link,
|
||
|
&__link:visited {
|
||
|
color: var(--primary-medium);
|
||
|
}
|
||
|
|
||
|
li:not(:last-child) a::after {
|
||
|
display: inline;
|
||
|
padding: 0 0.25em;
|
||
|
content: ">";
|
||
|
}
|
||
|
}
|