labyrinth-frontend/src/app/cell.module.css
2024-12-26 17:49:26 +01:00

11 lines
193 B
CSS

.cell {
display: table-cell;
border: 1px solid transparent;
height: 2em;
width: 2em;
padding: 0;
}
.cell:hover {
background-color: var(--color-background-highlight);
}