Skip to content

Commit

Permalink
fix(clerk-js): Use common font weights (#2687)
Browse files Browse the repository at this point in the history
- Medium: 510 -> 500
- Semibold: 590 -> 600
  • Loading branch information
anagstef authored Jan 30, 2024
1 parent fcaca7b commit da0f507
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .changeset/rotten-tigers-rescue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
4 changes: 2 additions & 2 deletions packages/clerk-js/src/ui/foundations/typography.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const fontWeights = Object.freeze({
normal: 400,
medium: 510,
semibold: 590,
medium: 500,
semibold: 600,
bold: 700,
} as const);

Expand Down

0 comments on commit da0f507

Please sign in to comment.