diff --git a/src/core/config.js b/src/core/config.js index 4287b6e..8e5b1ba 100644 --- a/src/core/config.js +++ b/src/core/config.js @@ -46,17 +46,17 @@ export const defaultSettings = { statBarColorHigh: '#33cc66', // Color for high stat values (green) enableAnimations: true, // Enable smooth animations for stats and content updates mobileFabPosition: { - top: 'calc(var(--topBarBlockSize) + 60px)', - right: '12px' - }, // Saved position for mobile FAB button + top: 'calc(var(--topBarBlockSize) + 20px)', + left: '12px' + }, // Saved position for mobile FAB button (top-left, stacked vertically) mobileRefreshPosition: { - bottom: '80px', - right: '20px' - }, // Saved position for mobile refresh button + top: 'calc(var(--topBarBlockSize) + 80px)', + left: '12px' + }, // Saved position for mobile refresh button (below toggle button) debugFabPosition: { - bottom: '140px', - left: '20px' - }, // Saved position for debug FAB button + top: 'calc(var(--topBarBlockSize) + 140px)', + left: '12px' + }, // Saved position for debug FAB button (below refresh button) userStats: { health: 100, satiety: 100, diff --git a/src/core/state.js b/src/core/state.js index 3442c6a..23d0b18 100644 --- a/src/core/state.js +++ b/src/core/state.js @@ -34,17 +34,17 @@ export let extensionSettings = { statBarColorHigh: '#33cc66', // Color for high stat values (green) enableAnimations: true, // Enable smooth animations for stats and content updates mobileFabPosition: { - top: 'calc(var(--topBarBlockSize) + 60px)', - right: '12px' - }, // Saved position for mobile FAB button + top: 'calc(var(--topBarBlockSize) + 20px)', + left: '12px' + }, // Saved position for mobile FAB button (top-left, stacked vertically) mobileRefreshPosition: { - bottom: '80px', - right: '20px' - }, // Saved position for mobile refresh button + top: 'calc(var(--topBarBlockSize) + 80px)', + left: '12px' + }, // Saved position for mobile refresh button (below toggle button) debugFabPosition: { - bottom: '140px', - left: '20px' - }, // Saved position for debug FAB button + top: 'calc(var(--topBarBlockSize) + 140px)', + left: '12px' + }, // Saved position for debug FAB button (below refresh button) userStats: { health: 100, satiety: 100,