mirror of
https://github.com/thangisme/notes.git
synced 2024-11-08 01:27:31 -05:00
18 lines
291 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|