tweak(ui): form element header hover color

This commit is contained in:
psychedelicious
2025-02-26 14:55:22 +10:00
parent 5c423fece4
commit 48e389f155

View File

@@ -31,6 +31,9 @@ const sx: SystemStyleObject = {
'&[data-is-dragging="true"]': {
opacity: 0.3,
},
_hover: {
bg: 'baseAlpha.300',
},
};
type Props = Omit<FlexProps, 'sx'> & { element: FormElement; dragHandleRef: RefObject<HTMLDivElement> };