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 {
|
.list {
|
||||||
display: grid;
|
display: flex;
|
||||||
margin: 0;
|
flex-wrap: wrap;
|
||||||
padding: 0;
|
|
||||||
grid-template-columns: 50% 50%;
|
|
||||||
grid-gap: 1em 1.5em;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: space-evenly;
|
||||||
|
padding: 0;
|
||||||
|
grid-gap: 1.5em 0;
|
||||||
|
|
||||||
font-size: 175%;
|
font-size: 175%;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue