_breadcrumb.scss 316 B

123456789101112131415161718192021222324
  1. .breadcrumb {
  2. }
  3. .breadcrumb-list {
  4. list-style-type: none;
  5. padding: 0;
  6. margin: 0;
  7. display: flex;
  8. font-size: $font-size-h6;
  9. }
  10. .breadcrumb-item {
  11. color: $color-muted-light;
  12. &:not(:first-child)::before {
  13. content: '›';
  14. margin: 0 .5rem;
  15. }
  16. }
  17. .breadcrumb-link {
  18. color: $color-muted-light;
  19. }