fix(settings): fix highlight not visible with reduced-motion (@fehmer) (#6719)

Highlight was not visible if the user has prefers-reduced-motion
enabled.
This commit is contained in:
Christian Fehmer 2025-07-10 13:53:54 +02:00 committed by GitHub
parent 9a6fe31a62
commit 477dc48673
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -493,7 +493,8 @@
&.highlight {
margin: -1em;
padding: 1em;
animation: flashBorder 4s ease-in;
animation: flashBorder 4s ease-in forwards;
box-shadow: 0 0 0 0.2em var(--sub-color);
border-radius: var(--roundness);
}