mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-29 14:26:50 +00:00
21 lines
358 B
SCSS
21 lines
358 B
SCSS
@charset "UTF-8";
|
|
/*------------------------------------*\
|
|
$LISTS
|
|
\*------------------------------------*/
|
|
/**
|
|
* Remove vertical spacing from nested lists.
|
|
*/
|
|
li{
|
|
> ul,
|
|
> ol{
|
|
margin-bottom:0;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Have a numbered `ul` without the semantics implied by using an `ol`.
|
|
*/
|
|
/*ul*/.numbered-list{
|
|
list-style-type:decimal;
|
|
}
|