ducky/web

Paddy 2015-05-03 Parent:99a43a6d1d30

1:2cd4e16a669e Go to Latest

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

Remove .swp files, update package.json. Remove the .swp files and add .swp to the .hgignore file. Update package.json to pin webpack at 1.8.9 because 1.8.10 broke everything and decided that didn't deserve a major version bump. See https://github.com/webpack/webpack/issues/1016

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 }