open-nomad/ui/app/styles/components/breadcrumbs.scss
Alex Dadgar e5ec915ac3 sync
2017-09-19 10:08:23 -05:00

27 lines
387 B
SCSS

.breadcrumbs {
.breadcrumb {
color: $white;
opacity: 0.7;
text-decoration: none;
&:hover {
color: $primary-invert;
opacity: 1;
}
+ .breadcrumb {
margin-left: 15px;
&::before {
content: "/";
color: $primary;
position: relative;
left: -7px;
}
}
&:last-child {
opacity: 1;
}
}
}