Skip to content

Commit cba81b5

Browse files
Added default margins to objects
1 parent f59a8b9 commit cba81b5

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

sass/base/defaults.scss

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,15 @@ a {
3333
a:hover {
3434
color: $theme03;
3535
text-decoration: none;
36-
}
36+
}
37+
38+
/* Default lists and tables have margin-bottom: $margin-default * 2; */
39+
dl, ol, ul, p, pre, table {
40+
margin-bottom: $margin-default * 2;
41+
}
42+
/* OL and UL alignment */
43+
ol, ul {
44+
padding-left: 24px;
45+
}
46+
/* Standard UL list-style is disc */
47+
ul { list-style-type: disc; }

0 commit comments

Comments
 (0)