Fix zap shadow on hover (#906)

This commit is contained in:
ekzyis 2024-03-13 17:48:16 +01:00 committed by GitHub
parent 25cc986ba7
commit f94de0f3ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ export default function UpVote ({ item, className }) {
style={meSats || hover style={meSats || hover
? { ? {
fill: hover ? nextColor : color, fill: hover ? nextColor : color,
filter: `drop-shadow(0 0 6px ${color}90)` filter: `drop-shadow(0 0 6px ${hover ? nextColor : color}90)`
} }
: undefined} : undefined}
/> />