feat: no rounded corners
This commit is contained in:
@ -7,7 +7,7 @@ interface ComponentProps {
|
|||||||
|
|
||||||
export const Card: FC<ComponentProps> = ({ children, className }) => {
|
export const Card: FC<ComponentProps> = ({ children, className }) => {
|
||||||
return (
|
return (
|
||||||
<div className={`bg-white rounded-lg shadow-md ${className || ""}`}>
|
<div className={`bg-white sm:rounded-lg shadow-md ${className || ""}`}>
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user