Skip to content

Commit 3180b40

Browse files
committed
fix(styled card): change border-base to border
1 parent d0875c3 commit 3180b40

File tree

1 file changed

+1
-4
lines changed
  • packages/kit-styled/src/components/card

1 file changed

+1
-4
lines changed

packages/kit-styled/src/components/card/card.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ const Card = component$<PropsOf<'div'>>((props) => {
55
return (
66
<div
77
{...props}
8-
class={cn(
9-
'bg-card text-card-foreground rounded-base border-base shadow',
10-
props.class,
11-
)}
8+
class={cn('bg-card text-card-foreground rounded-base border shadow', props.class)}
129
>
1310
<Slot />
1411
</div>

0 commit comments

Comments
 (0)