demarches-normaliennes/app/assets/stylesheets/new_design/breadcrumb.scss

29 lines
346 B
SCSS
Raw Normal View History

2017-07-18 15:38:31 +02:00
@import "colors";
@import "constants";
.breadcrumbs {
margin: $default-spacer 0;
li {
display: inline-block;
font-weight: bold;
font-size: 14px;
a {
color: $black;
}
&::after {
content: " > ";
}
&:last-child {
color: $blue;
&::after {
content: none;
}
}
}
}