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

27 lines
361 B
SCSS
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@import "colors";
@import "constants";
.breadcrumbs {
li {
display: inline-block;
font-weight: bold;
font-size: 14px;
a {
color: $black;
text-decoration: underline;
}
&::after {
content: " > ";
}
&:last-child {
color: $blue-france-500;
&::after {
content: none;
}
}
}
}