bdeb64e356
Add configurable square/hex grid in the scene editor (persisted and shown on control/presentation) and keep trap activation effects above trap icons. Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
489 B
CSS
20 lines
489 B
CSS
.layer {
|
||
position: absolute;
|
||
inset: 0;
|
||
pointer-events: none;
|
||
/* Выше иконок ловушек (z-index: 5), чтобы VFX взрыва не уходил под маркер. */
|
||
z-index: 7;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.video {
|
||
position: absolute;
|
||
height: auto;
|
||
max-width: none;
|
||
transform: translate(-50%, -50%);
|
||
pointer-events: none;
|
||
background: transparent;
|
||
/* WebM VP8/VP9 с alpha_mode=1 — без чёрной подложки */
|
||
mix-blend-mode: normal;
|
||
}
|