101f595bac
Add userData players/teams, scene npcTokens with hex-inscribed sizing, session scale synced to presentation, and Playwright e2e coverage. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
357 B
CSS
28 lines
357 B
CSS
.layer {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 9;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.token {
|
|
position: absolute;
|
|
overflow: visible;
|
|
transform: translate(-50%, -50%);
|
|
pointer-events: none;
|
|
touch-action: none;
|
|
}
|
|
|
|
.token > * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.editable {
|
|
pointer-events: auto;
|
|
cursor: grab;
|
|
}
|
|
|
|
.editable:active {
|
|
cursor: grabbing;
|
|
}
|