11 lines
193 B
CSS
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);
|
|
}
|