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

28 lines
361 B
SCSS
Raw Normal View History

2017-07-18 15:38:31 +02:00
@import "colors";
@import "constants";
.breadcrumbs {
li {
display: inline-block;
font-weight: bold;
font-size: 14px;
a {
color: $black;
2018-11-14 16:28:02 +01:00
text-decoration: underline;
2017-07-18 15:38:31 +02:00
}
&::after {
content: " > ";
}
&:last-child {
2021-09-20 15:04:24 +02:00
color: $blue-france-500;
2017-07-18 15:38:31 +02:00
&::after {
content: none;
}
}
}
}