12 lines
205 B
SCSS
12 lines
205 B
SCSS
.cell {
|
|
display: table-cell;
|
|
border: 1px solid transparent;
|
|
height: 2em;
|
|
width: 2em;
|
|
padding: 0;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
background-color: var(--color-background-highlight);
|
|
}
|
|
}
|