_lists.scss 386 B

123456789101112131415161718192021222324252627282930
  1. .list-inline-dots {
  2. display: inline-flex;
  3. flex-wrap: wrap;
  4. > * {
  5. + * {
  6. &:before {
  7. content: '·';
  8. color: $color-muted;
  9. margin-right: .5rem;
  10. }
  11. }
  12. &:not(:last-child) {
  13. margin-right: .5rem;
  14. }
  15. }
  16. }
  17. .list-unstyled {
  18. list-style: none;
  19. margin: 0;
  20. padding: 0;
  21. }
  22. .list-separated {
  23. >* + * {
  24. margin-top: $gap-2;
  25. }
  26. }