feat: update Card component styling for improved visual clarity

This commit is contained in:
Ardeman 2025-02-03 19:09:32 +08:00
parent 0c297500db
commit 7b498173fe

View File

@ -6,7 +6,7 @@ export const Card: FC<TProperties> = (properties) => {
const { children, ...rest } = properties const { children, ...rest } = properties
return ( return (
<div <div
className="border-[.2px] border-black bg-white p-[30px]" className="border-[.2px] border-black/20 bg-white p-[30px]"
{...rest} {...rest}
> >
{children} {children}