7 lines
173 B
CSS
7 lines
173 B
CSS
#settings {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, calc(85% / 4));
|
|
grid-template-rows: repeat(4, calc(85% / 4));
|
|
grid-gap: 5% 5%;
|
|
width: 100%;
|
|
} |