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.
 
 
 
 
 

18 lines
291 B

  1. //
  2. // Utility classes for lists
  3. //
  4. // stylelint-disable primer/selector-no-utility, primer/no-override, selector-max-type
  5. .list-style-none {
  6. padding: 0 !important;
  7. margin: 0 !important;
  8. list-style: none !important;
  9. li {
  10. &::before {
  11. display: none !important;
  12. }
  13. }
  14. }