1
1
mirror of https://github.com/primer/css.git synced 2025-01-02 11:12:27 +03:00
css/packages/primer-breadcrumb/lib/breadcrumb.scss
2017-05-11 16:12:29 -04:00

20 lines
289 B
SCSS

.breadcrumb-item {
display: inline-block;
margin-left: -4px;
white-space: nowrap;
list-style: none;
&::after {
padding-right: 0.5em;
padding-left: 0.5em;
color: $border-gray;
content: "/";
}
}
.breadcrumb-item-selected {
&::after {
content: none;
}
}