20 lines
191 B
CSS
20 lines
191 B
CSS
|
.parentDiv {
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr 1fr;
|
||
|
gap: 20px;
|
||
|
}
|
||
|
|
||
|
.matrixDiv {
|
||
|
display: grid;
|
||
|
gap: 5px;
|
||
|
}
|
||
|
|
||
|
.settingsDiv {
|
||
|
|
||
|
}
|
||
|
|
||
|
.matrixInput {
|
||
|
width: 50px;
|
||
|
text-align: center;
|
||
|
}
|