From 62213812ee73f3ed897d5fb248135232943ceaca Mon Sep 17 00:00:00 2001 From: Cyril Date: Wed, 7 Jan 2026 09:28:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(frontend)=20fix=20clickable=20main?= =?UTF-8?q?=20content=20regression?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit removes accidental clickable area introduced by the skip-to-content feature --- CHANGELOG.md | 2 +- src/frontend/apps/impress/src/layouts/MainLayout.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f654ece2..34290a85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,7 @@ and this project adheres to - 🐛(frontend) fix tables deletion #1739 - 🐛(frontend) fix children not display when first resize #1753 - +- 🐛(frontend) fix clickable main content regression #1773 ## [4.2.0] - 2025-12-17 diff --git a/src/frontend/apps/impress/src/layouts/MainLayout.tsx b/src/frontend/apps/impress/src/layouts/MainLayout.tsx index 39abde49..9a295bae 100644 --- a/src/frontend/apps/impress/src/layouts/MainLayout.tsx +++ b/src/frontend/apps/impress/src/layouts/MainLayout.tsx @@ -120,7 +120,7 @@ const MainContent = ({ $css={css` overflow-y: auto; overflow-x: clip; - &:focus { + &:focus-visible { outline: 3px solid ${colorsTokens['brand-400']}; outline-offset: -3px; }