mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 17:18:21 -05:00
32 lines
435 B
SCSS
32 lines
435 B
SCSS
|
ul,
|
||
|
ol {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
|
||
|
&%default-ul {
|
||
|
list-style-type: disc;
|
||
|
margin-bottom: $small-spacing;
|
||
|
padding-left: $base-spacing;
|
||
|
}
|
||
|
|
||
|
&%default-ol {
|
||
|
list-style-type: decimal;
|
||
|
margin-bottom: $small-spacing;
|
||
|
padding-left: $base-spacing;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dl {
|
||
|
margin-bottom: $small-spacing;
|
||
|
|
||
|
dt {
|
||
|
font-weight: bold;
|
||
|
margin-top: $small-spacing;
|
||
|
}
|
||
|
|
||
|
dd {
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|