From 61beac9d41d4980af76eaf3c54a3b907439ab196 Mon Sep 17 00:00:00 2001 From: Matthew Ferry Date: Thu, 16 Jan 2025 00:52:06 -0700 Subject: [PATCH] chore: update label font weight from regular to medium (#1522) --- .changeset/big-rats-eat.md | 5 +++++ packages/components/src/styles/Label.module.css | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/big-rats-eat.md diff --git a/.changeset/big-rats-eat.md b/.changeset/big-rats-eat.md new file mode 100644 index 000000000..4d28125a7 --- /dev/null +++ b/.changeset/big-rats-eat.md @@ -0,0 +1,5 @@ +--- +"@launchpad-ui/components": patch +--- + +chore: update Label to medium font weight diff --git a/packages/components/src/styles/Label.module.css b/packages/components/src/styles/Label.module.css index 05b10b25a..5fe0d08f8 100644 --- a/packages/components/src/styles/Label.module.css +++ b/packages/components/src/styles/Label.module.css @@ -1,4 +1,4 @@ .label { - font: var(--lp-text-label-1-regular); + font: var(--lp-text-label-1-medium); white-space: nowrap; }