Skip to content

Commit

Permalink
Added default margins to objects
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusrosendahl committed Jul 28, 2016
1 parent f59a8b9 commit cba81b5
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion sass/base/defaults.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,15 @@ a {
a:hover {
color: $theme03;
text-decoration: none;
}
}

/* Default lists and tables have margin-bottom: $margin-default * 2; */
dl, ol, ul, p, pre, table {
margin-bottom: $margin-default * 2;
}
/* OL and UL alignment */
ol, ul {
padding-left: 24px;
}
/* Standard UL list-style is disc */
ul { list-style-type: disc; }

0 comments on commit cba81b5

Please sign in to comment.