We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0875c3 commit 3180b40Copy full SHA for 3180b40
packages/kit-styled/src/components/card/card.tsx
@@ -5,10 +5,7 @@ const Card = component$<PropsOf<'div'>>((props) => {
5
return (
6
<div
7
{...props}
8
- class={cn(
9
- 'bg-card text-card-foreground rounded-base border-base shadow',
10
- props.class,
11
- )}
+ class={cn('bg-card text-card-foreground rounded-base border shadow', props.class)}
12
>
13
<Slot />
14
</div>
0 commit comments