blob: 253f48f7726f7e4d4e52e2ad129fc2a25fabfcc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* MeshTransformGrid.scss */
.meshTransformGrid {
position: relative;
width: 100%;
height: 100%;
pointer-events: none; /* Prevents interaction with the grid itself */
opacity: 5%;
}
.grid-line {
position: absolute;
background-color: rgba(255, 255, 255, 0.6); /* Light grid lines */
}
.control-point {
position: absolute;
width: 12px;
height: 12px;
background-color: rgba(255, 255, 255, 1); /* White control points */
border-radius: 50%;
cursor: pointer;
z-index: 10;
pointer-events: auto; /* Allows dragging of control points */
}
|