From 72f963b99e4ef53c2db76de4994646379e29fee0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 4 Apr 2026 20:08:07 +0000 Subject: [PATCH 1/2] Initial plan From 223ceebb1f3816766e9c1b0f5e060df47e18528d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 4 Apr 2026 20:10:15 +0000 Subject: [PATCH 2/2] fix: narrow global transition selectors and honor reduced motion Agent-Logs-Url: https://github.com/Yasar2019/myPortfolio/sessions/83b96bc6-f717-408d-a14e-b0a486b4de4e Co-authored-by: Yasar2019 <60102921+Yasar2019@users.noreply.github.com> --- src/styles/GlobalStyles.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/styles/GlobalStyles.js b/src/styles/GlobalStyles.js index 9e3d9df..205a6ee 100644 --- a/src/styles/GlobalStyles.js +++ b/src/styles/GlobalStyles.js @@ -54,23 +54,23 @@ const GlobalStyles = createGlobalStyle` section, header, footer, - div, - p, - h1, - h2, - h3, - h4, - span, button, input, textarea, - a, - ul, - li { + a { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; } + @media (prefers-reduced-motion: reduce) { + *, + *::before, + *::after { + transition: none !important; + animation: none !important; + } + } + body { margin: 0; padding: 0;