feat: no rounded corners

This commit is contained in:
2025-05-24 16:15:12 +02:00
parent e6b87a6561
commit 1a596eef87

View File

@ -7,7 +7,7 @@ interface ComponentProps {
export const Card: FC<ComponentProps> = ({ children, className }) => {
return (
<div className={`bg-white rounded-lg shadow-md ${className || ""}`}>
<div className={`bg-white sm:rounded-lg shadow-md ${className || ""}`}>
{children}
</div>
);