Fix rounded corner overflow

This commit is contained in:
Dries Augustyns
2025-12-04 13:59:26 +01:00
parent a7c214f9ea
commit d08471edc2
+1 -1
View File
@@ -5,7 +5,7 @@ import {cn} from '../../lib';
const Card = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(({className, ...props}, ref) => (
<div
ref={ref}
className={cn('rounded-xl border border-neutral-200 bg-white text-neutral-950 shadow', className)}
className={cn('rounded-xl border border-neutral-200 bg-white text-neutral-950 shadow overflow-hidden', className)}
{...props}
/>
));