29 lines
346 B
SCSS
29 lines
346 B
SCSS
|
@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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|