fix(ui): keep onboarding clear of wizard actions

This commit is contained in:
2026-08-30 22:22:05 +03:00
parent 466659c506
commit ad8390e297
2 changed files with 43 additions and 0 deletions
+11
View File
@@ -72,6 +72,17 @@
body:has(.drawer.open) .onboarding-trigger,
body:has(.drawer.open) .onboarding-panel { z-index: 149; }
/* The wizard owns a fixed bottom action bar. Keep this optional helper above
it so the primary Continue action remains both visible and clickable. */
body.wizard-page .onboarding-trigger {
bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}
body.wizard-page .onboarding-panel {
bottom: calc(150px + env(safe-area-inset-bottom, 0px));
max-height: min(700px, calc(100vh - 178px));
}
@media (max-width: 640px) {
.onboarding-trigger { right: 14px; bottom: 14px; }
.onboarding-panel { right: 14px; bottom: 68px; }