25 lines
378 B
SCSS
25 lines
378 B
SCSS
//
|
|
// breadcrumb.scss
|
|
//
|
|
|
|
// Breadcrumb item arrow
|
|
.breadcrumb-item {
|
|
>a {
|
|
color: var(--#{$prefix}body-color);
|
|
|
|
&:hover {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
+.breadcrumb-item {
|
|
&::before {
|
|
font-family: "boxicons";
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
color: $breadcrumb-active-color;
|
|
}
|
|
} |