feat: no rounded corners
This commit is contained in:
@ -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>
|
||||
);
|
||||
|
Reference in New Issue
Block a user