mirror of
https://github.com/Digital-Naturalism-Laboratories/Mothbox.git
synced 2026-03-20 13:55:22 +00:00
16 lines
237 B
SCSS
16 lines
237 B
SCSS
// Utility classes for lists
|
|
|
|
// stylelint-disable selector-max-type
|
|
|
|
.list-style-none {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
list-style: none !important;
|
|
|
|
li {
|
|
&::before {
|
|
display: none !important;
|
|
}
|
|
}
|
|
}
|