1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-27 07:45:08 +02:00
keeweb/app/styles/base/_lists.scss
2019-08-16 23:05:39 +02:00

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;
}
}