From 7169ede8609a50c74ef2ff28f8a0f1066bc588a3 Mon Sep 17 00:00:00 2001 From: VaibhavOrbit Date: Thu, 5 Mar 2026 09:52:52 +0000 Subject: [PATCH] Add underline and hover thickness for asset links (WCAG accessibility) --- client/styles/components/_asset-list.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/styles/components/_asset-list.scss b/client/styles/components/_asset-list.scss index f359c1ae3b..444c08088c 100644 --- a/client/styles/components/_asset-list.scss +++ b/client/styles/components/_asset-list.scss @@ -50,6 +50,7 @@ .asset-table__row a { @include themify() { color: getThemifyVariable('primary-text-color'); + text-decoration: underline; } } @@ -78,3 +79,7 @@ background-color: getThemifyVariable('background-color'); } } + +.asset-table__row a:hover { + text-decoration-thickness: 0.1em; +}