Add breadcrumbs

This commit is contained in:
Mathieu Magnin 2017-07-18 15:38:31 +02:00
parent 9aac9ba7cd
commit cf63fd6b04
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,28 @@
@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;
}
}
}
}