fix: placement cells missing width/height and incorrect positioning

- Add width/height (30px) to .placement-cell CSS so cells are visible
- Account for CSS grid gap (1px) in placement cell positioning
- Set width/height dynamically in JS for consistency
This commit is contained in:
mattlamb227@gmail.com
2026-08-09 21:56:27 -04:00
parent 4a4eef679a
commit ba6e26ab59
2 changed files with 7 additions and 2 deletions
+2
View File
@@ -205,6 +205,8 @@ h3 {
.placement-cell {
position: absolute;
width: 30px;
height: 30px;
background: rgba(255, 204, 0, 0.25);
border: 1px dashed rgba(255, 204, 0, 0.7);
pointer-events: auto;