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

This commit is contained in:
Frank Schwenk
2025-10-30 10:36:47 +01:00
parent 31ed600c97
commit 4c8b0cfed7

View File

@@ -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 {