ducky/web

Paddy 2015-07-07 Parent:99a43a6d1d30

16:5d47855181e1 Go to Latest

ducky/web/src/styles/base/_lists.scss

Make production builds possible. Our production builds were erroring out, making it hard to deploy. This fixes things so that our production builds succeed, though I'm lying if I say I understand all the reasoning behind it. The major reasoning seems to be "BUGS".

History
1 ul,
2 ol {
3 list-style-type: none;
4 margin: 0;
5 padding: 0;
7 &%default-ul {
8 list-style-type: disc;
9 margin-bottom: $small-spacing;
10 padding-left: $base-spacing;
11 }
13 &%default-ol {
14 list-style-type: decimal;
15 margin-bottom: $small-spacing;
16 padding-left: $base-spacing;
17 }
18 }
20 dl {
21 margin-bottom: $small-spacing;
23 dt {
24 font-weight: bold;
25 margin-top: $small-spacing;
26 }
28 dd {
29 margin: 0;
30 }
31 }