mirror of
https://github.com/primer/css.git
synced 2024-12-20 04:32:21 +03:00
24 lines
335 B
SCSS
24 lines
335 B
SCSS
.breadcrumb-item {
|
|
display: inline-block;
|
|
margin-left: -0.35em;
|
|
white-space: nowrap;
|
|
list-style: none;
|
|
|
|
&::after {
|
|
padding-right: 0.5em;
|
|
padding-left: 0.5em;
|
|
color: $border-gray;
|
|
content: "/";
|
|
}
|
|
|
|
&:first-child {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.breadcrumb-item-selected {
|
|
&::after {
|
|
content: none;
|
|
}
|
|
}
|