mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
7 lines
170 B
SCSS
7 lines
170 B
SCSS
// Lists
|
|
|
|
// Unstyled keeps list items block level, just removes default browser padding and list-style
|
|
@mixin list-unstyled() {
|
|
padding-left: 0;
|
|
list-style: none;
|
|
}
|