1
1
mirror of https://github.com/primer/css.git synced 2024-12-20 12:42:07 +03:00
css/modules/primer-breadcrumb/lib/breadcrumb.scss

24 lines
335 B
SCSS
Raw Normal View History

2017-05-11 07:56:23 +03:00
.breadcrumb-item {
display: inline-block;
margin-left: -0.35em;
2017-05-11 07:56:23 +03:00
white-space: nowrap;
list-style: none;
&::after {
padding-right: 0.5em;
padding-left: 0.5em;
color: $border-gray;
content: "/";
}
&:first-child {
margin-left: 0;
}
2017-05-11 07:56:23 +03:00
}
.breadcrumb-item-selected {
&::after {
content: none;
}
}