Fix list overflow for swissen template

Based on there4/markdown-resume@ca2e1db; fixes the issue where list
items (such as those in the 'skills' section of sample.md) don't align
correctly if there's enough of them to wrap past the right margin. Also
fixes the width of those list items (there was wasted space on the right
before).
This commit is contained in:
jake-low 2015-05-10 17:26:37 -07:00
parent 7a6aa684c2
commit 97f2247ea2
3 changed files with 3 additions and 2 deletions

View File

@ -52,7 +52,7 @@ body.pdf {
}
ul li {
width: 28%;
width: 33.33%;
float: left;
}
ul dl {

View File

@ -109,6 +109,7 @@ ul {
margin: 0;
padding: 0;
list-style: none;
display: table;
}
ul li {
margin: 0;

View File

@ -91,7 +91,7 @@
}
ul li {
width: 28%;
width: 33.33%;
float: left;
}
ul dl {