6 lines
157 B
CSS
6 lines
157 B
CSS
#settings {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, calc(90% / 4));
|
|
grid-template-rows: repeat(5, calc(90% / 5));
|
|
grid-gap: 10% 5%;
|
|
} |