From 4c8b0cfed7ca581bb7f2c87036aafc1628865a96 Mon Sep 17 00:00:00 2001 From: Frank Schwenk Date: Thu, 30 Oct 2025 10:36:47 +0100 Subject: [PATCH] refactor(css): remove global :focus outline styles in index.css\n\nFocus rings were visually distracting for this app context; removed the global *:focus rule. Component-level focus where needed can be handled locally.\n\nRefs #26 --- src/styles/index.css | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/styles/index.css b/src/styles/index.css index 874741d..db6c583 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -266,11 +266,6 @@ input:focus, select:focus { border: 0; } -/* Focus styles for better accessibility */ -*:focus { - outline: 2px solid var(--color-primary); - outline-offset: 2px; -} /* Skip link for keyboard navigation */ .skip-link {