fix: Continue button focus visible on onboarding Path screen
Some checks failed
Build Archipelago ISO (dev) / build-iso (push) Has been cancelled

- Remove path-action-button from focus-visible suppression list
- Orange glow now shows on Continue when autofocused
- Bump autofocus delay to 500ms to clear slide transition

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-30 09:38:06 +01:00
parent b214b2f52f
commit ccad4737de
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,6 @@
/* Elements with existing styles: suppress the global glow, let their own styles handle it */
.glass-card:focus-visible,
.sidebar-nav-item:focus-visible,
.path-action-button:focus-visible,
.path-option-card:focus-visible,
.kiosk-app-tile:focus-visible,
input:focus-visible,

View File

@@ -101,9 +101,10 @@ const router = useRouter()
const continueButton = ref<HTMLButtonElement | null>(null)
onMounted(() => {
// Focus after slide transition completes (400ms + buffer)
setTimeout(() => {
continueButton.value?.focus({ preventScroll: true })
}, 400)
}, 500)
})
function proceed() {