Skip to content

Commit 1ccd827

Browse files
committed
fix(bitmap viewer): toolbar above the touch joystick zones on mobile
The fullscreen / PFP / exit toggles in .bitmap-toolbar sat at default stacking — they were hidden behind the renderer's right joystick zone (z-index 2) and jump button (z-index 3) on mobile, which both cover the bottom-right quadrant. Promote the toolbar to z-index 10 so it clears both.
1 parent cf65f12 commit 1ccd827

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

frontend/src/app/components/_ordpool/digital-artifact-viewer/bitmap-viewer/bitmap-viewer.component.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
bottom: 10px;
2626
display: flex;
2727
gap: 8px;
28+
// Sit above the renderer's touch UI. The renderer's right joystick
29+
// zone (z-index 2) covers the bottom-right quadrant and the jump
30+
// button (z-index 3) sits on top of that; without an explicit
31+
// z-index here the toolbar's fullscreen / PFP / exit toggles would
32+
// be hidden under both on mobile.
33+
z-index: 10;
2834
}
2935

3036
.bitmap-toggle {

0 commit comments

Comments
 (0)