1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-03 13:10:43 +00:00
notes/_sass/utilities/_lists.scss
2019-09-10 12:32:43 -04:00

18 lines
291 B
SCSS

//
// Utility classes for lists
//
// stylelint-disable primer/selector-no-utility, primer/no-override, selector-max-type
.list-style-none {
padding: 0 !important;
margin: 0 !important;
list-style: none !important;
li {
&::before {
display: none !important;
}
}
}