plate-tool/src/components/plate.css

17 lines
221 B
CSS
Raw Normal View History

2023-05-11 21:49:03 +00:00
table, tr, td {
box-sizing: border-box;
user-select: none;
}
td.plate_cell {
width: 30px;
height: 30px;
background: blue;
}
td.plate_cell:hover {
background: purple;
}
td.current_select {
border: 3px solid red;
}