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%", },