This repository has been archived on 2024-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
qdouze2-wordpress-theme/scss/components/_breadcrumb.scss

26 lines
440 B
SCSS
Raw Permalink Normal View History

2023-11-20 10:05:50 +01:00
ul.breadcrumb,
ol.breadcrumb,
.breadcrumb {
@include shape-style($button_large);
background-color: $color-background-alt;
2022-12-17 22:34:02 +01:00
2023-11-20 10:05:50 +01:00
&::before {
background-color: $color-background-alt;
2022-12-17 22:34:02 +01:00
}
2023-11-20 10:05:50 +01:00
padding: $button_large/2;
margin: 0 0 $lineheight;
@include li-flex();
}
2022-12-17 22:34:02 +01:00
2023-11-20 10:05:50 +01:00
.breadcrumb {
li:not(:first-child)::before {
content: "/";
padding: 0.3rem;
2022-12-17 22:34:02 +01:00
}
2023-11-20 10:05:50 +01:00
.active {
font-weight: 600;
2022-12-17 22:34:02 +01:00
}
}