fix: float button render hover color correctly (#48198)

This commit is contained in:
LonelySnowman 2024-04-01 10:11:11 +08:00 committed by GitHub
parent 3e7c9e5cc6
commit e665894e3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -121,6 +121,9 @@ const genSharedBadgeStyle: GenerateStyle<BadgeToken> = (token) => {
[`&:not(${componentCls}-count)`]: {
color: darkColor,
},
'a:hover &': {
background: darkColor,
},
},
}));