plate-tool/src/components/plate.css

19 lines
297 B
CSS
Raw Normal View History

2023-05-11 21:49:03 +00:00
table, tr, td {
box-sizing: border-box;
2023-05-11 21:51:09 +00:00
user-select: none; /* Prevents dragging issue */
2023-05-11 21:49:03 +00:00
}
td.plate_cell {
width: 30px;
height: 30px;
background: none;
border-radius: 50%;
border: 2px solid black;
2023-05-11 21:49:03 +00:00
}
td.plate_cell:hover {
background: black;
2023-05-11 21:49:03 +00:00
}
td.current_select {
background: lightblue;
2023-05-11 21:49:03 +00:00
}