From 140e1f76d685c91535cc4caf3512118dbcb9d318 Mon Sep 17 00:00:00 2001 From: Joonas Tiala Date: Fri, 24 Nov 2023 11:54:17 +0200 Subject: [PATCH] fix: incorrect css rules --- packages/style/src/components/anchor.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/style/src/components/anchor.css b/packages/style/src/components/anchor.css index 708df78..56e14d4 100644 --- a/packages/style/src/components/anchor.css +++ b/packages/style/src/components/anchor.css @@ -14,9 +14,9 @@ text-decoration: underline; } -a:link:hover, -a:link:active, -a:visited:active, -a:visited:hover { +.tui__anchor:link:hover, +.tui__anchor:link:active, +.tui__anchor:visited:active, +.tui__anchor:visited:hover { color: darkblue; }