t2-mapper/src/components/TouchControls.module.css

23 lines
288 B
CSS
Raw Normal View History

2026-03-01 09:40:17 -08:00
.Joystick {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: 140px;
height: 140px;
z-index: 1;
}
.Left {
composes: Joystick;
left: 20px;
transform: none;
}
.Right {
composes: Joystick;
left: auto;
right: 20px;
transform: none;
}