From 7e03db3f26644f8c2f229ee673d3c2bca31da9b5 Mon Sep 17 00:00:00 2001 From: Anna Schoderer Date: Mon, 18 Nov 2024 16:52:14 +0100 Subject: [PATCH] style: enable default text-decoration for `.db-link` (#3475) * style: enable default text-decoration for .db-link Default .db-link has no text-decoration: underline. * fix: linting issue --------- Co-authored-by: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Co-authored-by: Nicolas Merget --- packages/components/src/styles/_link-components.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/components/src/styles/_link-components.scss b/packages/components/src/styles/_link-components.scss index 4f39e1486ba..d0335c649d4 100644 --- a/packages/components/src/styles/_link-components.scss +++ b/packages/components/src/styles/_link-components.scss @@ -40,6 +40,7 @@ // TODO: We should evaluate whether we could move this declaration to the @font-face declarations even already text-underline-position: from-font; text-decoration-thickness: helpers.px-to-rem($pxValue: 1); + text-decoration-line: underline; &:not([data-variant="inline"]) { white-space: nowrap;