_breadcrumb.scss 696 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .breadcrumb {
  2. margin: 0 1rem;
  3. padding: 0.5rem 0;
  4. @include truncate($grid-body-width);
  5. ol {
  6. @include flexbox();
  7. @include align-items(center);
  8. }
  9. li {
  10. display: inline;
  11. font-size: 0.9rem;
  12. a {
  13. @include themify($themes) {
  14. color: themed('breadcrumb-item-color');
  15. @include on-event {
  16. color: themed('link-hover');
  17. }
  18. }
  19. }
  20. &:last-child {
  21. @include themify($themes) {
  22. color: themed('breadcrumb-item-active-color');
  23. }
  24. }
  25. }
  26. li+li:before {
  27. padding: 0.5rem;
  28. content: "»";
  29. @include themify($themes) {
  30. color: themed('breadcrumb-item-color');
  31. }
  32. }
  33. }