mirror of
https://github.com/retspen/webvirtcloud
synced 2024-10-31 19:44:16 +00:00
8 lines
170 B
SCSS
8 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;
|
||
|
}
|