_breadcrumbs.scss 563 B

1234567891011121314151617181920212223242526
  1. .w-breadcrumbs:not(.editor-view .w-breadcrumbs) {
  2. @apply sm:w-py-2.5;
  3. li[hidden] ~ li:last-child,
  4. li:only-child {
  5. a {
  6. font-size: theme('fontSize.18');
  7. font-weight: theme('fontWeight.extrabold');
  8. @include media-breakpoint-up(md) {
  9. font-size: theme('fontSize.22');
  10. }
  11. }
  12. .w-breadcrumbs__sublabel,
  13. .w-breadcrumbs__icon {
  14. display: inline-block;
  15. }
  16. .w-breadcrumbs__icon {
  17. width: theme('spacing.5');
  18. height: theme('spacing.5');
  19. margin-inline-end: theme('spacing[2.5]');
  20. }
  21. }
  22. }