0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 13:10:14 +01:00
wagtail/client/scss/components/_breadcrumbs.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
563 B
SCSS
Raw Normal View History

.w-breadcrumbs:not(.editor-view .w-breadcrumbs) {
@apply sm:w-py-2.5;
li[hidden] ~ li:last-child,
li:only-child {
a {
font-size: theme('fontSize.18');
font-weight: theme('fontWeight.extrabold');
@include media-breakpoint-up(md) {
font-size: theme('fontSize.22');
}
}
2023-12-14 17:30:37 +01:00
.w-breadcrumbs__sublabel,
.w-breadcrumbs__icon {
2023-12-14 17:30:37 +01:00
display: inline-block;
}
.w-breadcrumbs__icon {
width: theme('spacing.5');
height: theme('spacing.5');
margin-inline-end: theme('spacing[2.5]');
}
}
}