From 67b2580ec2a67fe10c544a4792cc81b3c76eec65 Mon Sep 17 00:00:00 2001 From: Adrian Llopart <67589468+AdrianLlopart@users.noreply.github.com> Date: Wed, 8 Jul 2026 09:51:52 +0200 Subject: [PATCH 1/2] Apply suggested fix to src/styles/global.css from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- src/styles/global.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/global.css b/src/styles/global.css index d7fba64..b108204 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -183,7 +183,7 @@ section[id] { *, *::before, *::after { - animation-duration: 0.001ms !important; - transition-duration: 0.001ms !important; + animation: none !important; + transition: none !important; } } From 96a7303a36e64fe44ed49a8a8bcc2e48a076b299 Mon Sep 17 00:00:00 2001 From: Adrian Llopart <67589468+AdrianLlopart@users.noreply.github.com> Date: Wed, 8 Jul 2026 09:51:52 +0200 Subject: [PATCH 2/2] Apply suggested fix to src/styles/global.css from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- src/styles/global.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/global.css b/src/styles/global.css index b108204..211b6f2 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -32,7 +32,8 @@ a { /* visible keyboard focus on every interactive element */ :focus-visible { - outline: 2px solid #fff; + outline: 2px solid; + outline-color: auto; outline-offset: 2px; border-radius: 5px; }