_breadcrumbs.scss 586 B

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