fix: onboarding gamepad — autofocus, click sounds, focus styles

All screens:
- playNavSound('action') on every button click
- path-action-button orange focus glow (removed from suppression list)

Per-screen autofocus:
- Intro: CTA button (after animation)
- Path: Continue button
- Identity: name input
- Backup: passphrase input, Continue after download
- Verify: Sign Challenge, then Finish after verification
- Done: Set Password button

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-30 09:52:09 +01:00
co-authored by Claude Opus 4.6
parent 1c82b8285e
commit 9ea8877d20
7 changed files with 38 additions and 3 deletions
+2
View File
@@ -82,6 +82,7 @@
import { ref, onMounted } from 'vue'
import { useRouter } from 'vue-router'
import { completeOnboarding } from '@/composables/useOnboarding'
import { playNavSound } from '@/composables/useNavSounds'
const router = useRouter()
const selected = ref<string | null>(null)
@@ -100,6 +101,7 @@ async function proceed() {
} catch (e) {
if (import.meta.env.DEV) console.warn('completeOnboarding failed, localStorage fallback ensures onboarding is marked complete', e)
}
playNavSound('action')
router.push('/login').catch(() => {})
}
</script>