style: adjusted the shadow to the card

This commit is contained in:
Riccardo
2024-01-19 22:13:46 +01:00
parent a05f5e5e4c
commit d420ceaf9f
4 changed files with 10 additions and 6 deletions

View File

@@ -58,9 +58,10 @@ export const Card = ({
return (
<CardUI
className={`${
style ?? 'sm:w-2/3 md:w-2/5 lg:w-1/3 xl:w-1/4'
} p-4 shadow-2xl`}
style={{
boxShadow: '0 16px 32px 0 rgba(0, 0, 0, 0.6)'
}}
className={`${style ?? 'sm:w-2/3 md:w-2/5 lg:w-1/3 xl:w-1/4'} p-4`}
>
<CardHeader className='text-center'>
<CardTitle>{title}</CardTitle>