11 lines
178 B
CSS
11 lines
178 B
CSS
.maze {
|
|
display: table;
|
|
border-collapse: collapse;
|
|
background-color: var(--color-maze-background);
|
|
}
|
|
|
|
.row {
|
|
display: table-row;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|