improve: menu items visuals

This commit is contained in:
Mahyar Khanbolooki
2025-07-13 01:37:05 +03:30
parent a77a75eca4
commit 6c417f9725
2 changed files with 26 additions and 10 deletions
+5 -2
View File
@@ -8,8 +8,11 @@ function MenuItemRendererComponent({ children, ...rest }: Props) {
return (
<div
{...rest}
className={`${rest.className} transition-all duration-200 ease-out w-full h-36 bg-white rounded-3xl px-4 pt-3.5 pb-3 flex justify-between gap-4`}
>
className={`${rest.className} transition-all duration-200 ease-out w-full min-h-36 bg-white rounded-3xl px-4 flex items-center justify-between gap-4`}
style={{
boxShadow: '0px 2px 16px 0px #00000014'
}}>
{children}
</div>
);