mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
Fix list overflow for modern template
This fixes the tendency of large lists to flow past the section header and cause the columns of the list to not be aligned correctly. This also fixes an issue with the spacing between the end of said lists and `<hr>`s.
This commit is contained in:
@@ -54,7 +54,7 @@ body.pdf {
|
||||
}
|
||||
|
||||
ul li {
|
||||
width: 26%;
|
||||
width: 33%;
|
||||
float: left;
|
||||
}
|
||||
ul dl {
|
||||
|
||||
@@ -102,6 +102,7 @@ ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
display: table;
|
||||
}
|
||||
ul li {
|
||||
margin: 0;
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
}
|
||||
|
||||
ul li {
|
||||
width: 25%;
|
||||
width: 33%;
|
||||
float: left;
|
||||
}
|
||||
ul dl {
|
||||
|
||||
Reference in New Issue
Block a user