Skip to content

Commit 90f2b9d

Browse files
committed
refactor(styled card): change CardTitle font-weight to medium
1 parent 0792f5a commit 90f2b9d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/warm-pans-drum.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@qwik-ui/styled': patch
3+
---
4+
5+
refactor change CardTitle font-weight to medium

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const CardHeader = component$<PropsOf<'div'>>((props) => {
2525

2626
export const CardTitle = component$<PropsOf<'h3'>>((props) => {
2727
return (
28-
<h3 {...props} class={cn('font-semibold leading-none tracking-tight', props.class)}>
28+
<h3 {...props} class={cn('font-medium leading-none tracking-tight', props.class)}>
2929
<Slot />
3030
</h3>
3131
);

0 commit comments

Comments
 (0)