diff --git a/frontend/css/app.css b/frontend/css/app.css index 08b4e61..181da0b 100644 --- a/frontend/css/app.css +++ b/frontend/css/app.css @@ -1244,6 +1244,10 @@ a { color: var(--primary); text-decoration: none; } /* ── Settings Page ──────────────────────────────────────── */ #modal-settings.modal-overlay { align-items: stretch; justify-content: stretch; padding: 0; background: var(--bg-app); + /* Full-screen opaque "page". Sit BELOW real modals (z-index 500) so dialogs + opened from inside settings — share, add-account, color picker — appear on + top instead of behind this page (that's why the Share button "did nothing"). */ + z-index: 400; } .settings-page-card { width: 100%; height: 100%; diff --git a/frontend/js/version.js b/frontend/js/version.js index 948453c..eaf17b2 100644 --- a/frontend/js/version.js +++ b/frontend/js/version.js @@ -1,2 +1,2 @@ // Increment APP_VERSION with every code change -export const APP_VERSION = 'v78'; +export const APP_VERSION = 'v79';