fix index layout for odd number of items
This commit is contained in:
parent
c04f34083f
commit
9b2e2f1cd4
1 changed files with 5 additions and 6 deletions
|
@ -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%;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue