style: fix desktop map-top-controls left offset to eliminate HUD card collision

This commit is contained in:
2026-09-12 11:16:35 -07:00
parent a807a3abca
commit 2785782f7d
+7
View File
@@ -706,12 +706,19 @@ body {
.map-top-controls { .map-top-controls {
position: absolute; position: absolute;
top: 20px; top: 20px;
left: 360px;
right: 20px; right: 20px;
z-index: 500; z-index: 500;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-end;
gap: 10px; gap: 10px;
flex-wrap: wrap; flex-wrap: wrap;
pointer-events: none;
}
.map-top-controls > * {
pointer-events: auto;
} }
.btn-hud-action { .btn-hud-action {