Skip to content

Commit

Permalink
Update about.css to fix list spacing (#61)
Browse files Browse the repository at this point in the history
* Update about.css

Added more padding to OL

* Updated about.css

When reducing the grid-gap with a few px it solved the problem at least in Chrome and Internet Explorer. Not sure about Firefox. This may not be an ideal solution, so feel free to dismiss my these changes :)

* Justify li to not have weird number spacing
  • Loading branch information
Myhr86 authored and mirdaki committed Feb 14, 2019
1 parent 80e0d1a commit 8badc45
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions website/styles/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@
#wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
grid-gap: 20px;
grid-gap: 16px;
justify-items: stretch;
margin: 20px;
}

/* Make sure the list is within the box */
ol {
padding-left: 10px;
padding-left: 22px;
padding-right: 10px;
}
}

li {
text-align: justify;
}

0 comments on commit 8badc45

Please sign in to comment.