diff --git a/src/style.css b/src/style.css index dc7bc16..b6e74a3 100644 --- a/src/style.css +++ b/src/style.css @@ -29,12 +29,21 @@ a::before { left: 0; transform-origin: right; transform: scaleX(0); + opacity: 0%; transition: transform .3s ease-in-out; } +@media (prefers-reduced-motion) { + a::before { + transition: opacity .3s ease-in-out; + } +} + + a:hover::before { transform-origin: left; transform: scaleX(1); + opacity: 100%; } a:link {