fix large dropdown properties truncation (#5672)

This commit is contained in:
rahulramesha 2024-09-22 01:42:16 +05:30 committed by GitHub
parent 604ddad3fa
commit f328772b82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,7 +74,7 @@ const BorderButton: React.FC<ButtonProps> = (props) => {
>
<div
className={cn(
"h-full flex items-center gap-1.5 border-[0.5px] border-custom-border-300 hover:bg-custom-background-80 rounded text-xs px-2 py-0.5",
"h-full w-full flex items-center gap-1.5 border-[0.5px] border-custom-border-300 hover:bg-custom-background-80 rounded text-xs px-2 py-0.5",
{ "bg-custom-background-80": isActive },
className
)}
@ -98,7 +98,7 @@ const BackgroundButton: React.FC<ButtonProps> = (props) => {
>
<div
className={cn(
"h-full flex items-center gap-1.5 rounded text-xs px-2 py-0.5 bg-custom-background-80",
"h-full w-full flex items-center gap-1.5 rounded text-xs px-2 py-0.5 bg-custom-background-80",
className
)}
>