From 4881fa20f597e58da44ac4495b505cc61098b800 Mon Sep 17 00:00:00 2001 From: Cyril Date: Thu, 26 Feb 2026 09:23:26 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BF=EF=B8=8F(frontend)=20fix=20carousel?= =?UTF-8?q?=20focus=20ring=20visibility=20with=20NVDA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add :focus fallback for nav buttons when focus-visible detection fails --- src/frontend/src/features/home/components/IntroSlider.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/src/features/home/components/IntroSlider.tsx b/src/frontend/src/features/home/components/IntroSlider.tsx index a01413fa..309acd61 100644 --- a/src/frontend/src/features/home/components/IntroSlider.tsx +++ b/src/frontend/src/features/home/components/IntroSlider.tsx @@ -206,6 +206,7 @@ export const IntroSlider = () => { ref={prevButtonRef} variant="secondaryText" square + className="carousel-nav-button" aria-label={previousAriaLabel} onPress={() => { focusTargetRef.current = 'prev' @@ -234,6 +235,7 @@ export const IntroSlider = () => { ref={nextButtonRef} variant="secondaryText" square + className="carousel-nav-button" aria-label={nextAriaLabel} onPress={() => { focusTargetRef.current = 'next'