fix: checkbox disable hover style

This commit is contained in:
Finley Ge 2025-12-10 11:18:17 +08:00
parent e7a5d41148
commit fd3fd5daf5
No known key found for this signature in database
GPG Key ID: 4C7633901042E27A

View File

@ -556,11 +556,20 @@ const Checkbox = checkBoxMultiStyle({
bg: 'myGray.100',
borderColor: 'transparent',
color: 'myGray.400',
outline: 'none'
outline: 'none',
_hover: {
bg: 'myGray.100',
borderColor: 'transparent'
}
}
},
_hover: {
borderColor: 'primary.400'
},
_disabled: {
_hover: {
borderColor: 'inherit'
}
}
}
}),