Update UI styles and behavior across various components
This commit updates a variety of user interface styles and interactivity across multiple components. Changes include altering color schemes and border styles, modifying button interactivity and behaviors, and updating font weights. An emphasis has been placed on enhancing visual appearance, improving user experience, and maintaining a more consistent look-and-feel across the application.
This commit is contained in:
@@ -53,10 +53,11 @@ const RadioGroupItemLabel = (
|
||||
className={cn(
|
||||
props.className,
|
||||
'flex cursor-pointer rounded-md' +
|
||||
' items-center space-x-4 border border-input hover:bg-secondary' +
|
||||
' items-center space-x-4 border border-input' +
|
||||
' transition-duration-500 p-4 text-sm transition-all focus-within:border-primary',
|
||||
{
|
||||
[`border-primary bg-secondary`]: props.selected,
|
||||
[`border-primary`]: props.selected,
|
||||
[`hover:border-primary`]: !props.selected,
|
||||
},
|
||||
)}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user