mirror of https://github.com/keeweb/keeweb
32 lines
495 B
SCSS
32 lines
495 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;
|
|
}
|
|
}
|