From 2910374eb73ee4b98e8edaf27722e353864b91f0 Mon Sep 17 00:00:00 2001 From: Bryan Cunningham Date: Fri, 16 Jan 2026 10:28:33 -0500 Subject: [PATCH] update link underline style --- libs/components/src/link/link.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/components/src/link/link.component.ts b/libs/components/src/link/link.component.ts index 40baca18f75..46080989318 100644 --- a/libs/components/src/link/link.component.ts +++ b/libs/components/src/link/link.component.ts @@ -45,7 +45,7 @@ const commonStyles = [ "tw-no-underline", "tw-cursor-pointer", "hover:[&_span]:tw-underline", - "hover:[&_span]:tw-decoration-1", + "hover:[&_span]:tw-decoration-[.125em]", "disabled:tw-no-underline", "disabled:tw-cursor-not-allowed", "disabled:!tw-text-secondary-300", @@ -53,7 +53,7 @@ const commonStyles = [ "disabled:hover:tw-no-underline", "focus-visible:tw-outline-none", "focus-visible:[&_span]:tw-underline", - "focus-visible:[&_span]:tw-decoration-1", + "focus-visible:[&_span]:tw-decoration-[.125em]", // Workaround for html button tag not being able to be set to `display: inline` // and at the same time not being able to use `tw-ring-offset` because of box-shadow issue.