open-nomad/ui/app/styles/components/breadcrumbs.scss
Michael Lange 71bc408f6c Remold the allocation detail and task detail pages
Now that there is a task detail page, some of the content from
the allocation detail page is better suited there.
2017-11-14 11:08:51 -08:00

27 lines
390 B
SCSS

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