Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
249 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. /**
  2. * list
  3. *
  4. *
  5. * @author Björn Hase
  6. *
  7. */
  8. /**
  9. * clear default styles from list
  10. *
  11. *
  12. */
  13. @mixin crispy-boilerplate-list-clear() {
  14. list-style: none;
  15. margin: 0;
  16. padding: 0;
  17. li {
  18. margin: 0;
  19. padding: 0;
  20. }
  21. }