fix index layout for odd number of items

This commit is contained in:
Rhiannon Morris 2020-09-21 21:56:06 +02:00
parent c04f34083f
commit 9b2e2f1cd4
1 changed files with 5 additions and 6 deletions

View File

@ -62,13 +62,12 @@ body {
.list {
display: grid;
margin: 0;
padding: 0;
grid-template-columns: 50% 50%;
grid-gap: 1em 1.5em;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
justify-content: space-evenly;
padding: 0;
grid-gap: 1.5em 0;
font-size: 175%;
}