From 96ffb567711f8f5cdab41e4d3a6d9bc36f1af971 Mon Sep 17 00:00:00 2001 From: Vicki League Date: Tue, 18 Nov 2025 11:25:48 -0500 Subject: [PATCH] [CL-928] Set link component to semibold weight (#17395) --- libs/components/src/link/link.directive.ts | 2 +- libs/components/src/typography/typography.stories.ts | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/components/src/link/link.directive.ts b/libs/components/src/link/link.directive.ts index df124a6811d..e6de8ac8402 100644 --- a/libs/components/src/link/link.directive.ts +++ b/libs/components/src/link/link.directive.ts @@ -25,7 +25,7 @@ const commonStyles = [ "tw-leading-none", "tw-px-0", "tw-py-0.5", - "tw-font-medium", + "tw-font-semibold", "tw-bg-transparent", "tw-border-0", "tw-border-none", diff --git a/libs/components/src/typography/typography.stories.ts b/libs/components/src/typography/typography.stories.ts index bb055be79a0..f9c57ae2637 100644 --- a/libs/components/src/typography/typography.stories.ts +++ b/libs/components/src/typography/typography.stories.ts @@ -27,42 +27,42 @@ const typographyProps: TypographyData[] = [ { id: "h1", typography: "h1", - weight: "Regular", + weight: "Medium", size: 30, lineHeight: "150%", }, { id: "h2", typography: "h2", - weight: "Regular", + weight: "Medium", size: 24, lineHeight: "150%", }, { id: "h3", typography: "h3", - weight: "Regular", + weight: "Medium", size: 20, lineHeight: "150%", }, { id: "h4", typography: "h4", - weight: "Regular", + weight: "Medium", size: 18, lineHeight: "150%", }, { id: "h5", typography: "h5", - weight: "Regular", + weight: "Medium", size: 16, lineHeight: "150%", }, { id: "h6", typography: "h6", - weight: "Regular", + weight: "Medium", size: 14, lineHeight: "150%", },