fix: correct mobile FAB chevron direction and reposition to left side

- Fix inverted chevron logic: show left arrow when panel open, right arrow when closed
- Move FAB button from right to left side of screen (12px from left edge)
- Adjust vertical position down by 30px for better placement
- Update console logging to reflect correct icon states
This commit is contained in:
Lucas 'Paperboy' Rose-Winters
2025-10-16 10:27:17 +11:00
parent 9a653a9c7a
commit b73f6d31bc
2 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -3068,9 +3068,9 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
align-items: center;
justify-content: center;
position: fixed !important;
top: calc(var(--topBarBlockSize) + 60px) !important;
right: 12px !important;
left: auto !important;
top: calc(var(--topBarBlockSize) + 120px) !important;
left: 12px !important;
right: auto !important;
width: 44px;
height: 44px;
min-width: 44px;