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:
parent
7a6aa684c2
commit
97f2247ea2
|
@ -52,7 +52,7 @@ body.pdf {
|
|||
}
|
||||
|
||||
ul li {
|
||||
width: 28%;
|
||||
width: 33.33%;
|
||||
float: left;
|
||||
}
|
||||
ul dl {
|
||||
|
|
|
@ -109,6 +109,7 @@ ul {
|
|||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
display: table;
|
||||
}
|
||||
ul li {
|
||||
margin: 0;
|
||||
|
|
|
@ -91,7 +91,7 @@
|
|||
}
|
||||
|
||||
ul li {
|
||||
width: 28%;
|
||||
width: 33.33%;
|
||||
float: left;
|
||||
}
|
||||
ul dl {
|
||||
|
|
Loading…
Reference in New Issue