From d7717d3d03cac3c5037b44625ce7d636bfcf6538 Mon Sep 17 00:00:00 2001 From: Michaela Robosova Date: Fri, 20 Sep 2024 23:03:16 +0200 Subject: [PATCH] Use a single place for link style and remove duplicate value. --- lib/cards/KCard.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/cards/KCard.vue b/lib/cards/KCard.vue index b7fdb4312..0653d7982 100644 --- a/lib/cards/KCard.vue +++ b/lib/cards/KCard.vue @@ -589,11 +589,6 @@ font-size: 16px; font-weight: 600; line-height: 1.5; - - a { - color: inherit; - text-decoration: none; - } } .thumbnail { @@ -629,6 +624,7 @@ .link { display: inline-block; // allows title placeholder in the skeleton card width: 100%; // allows title placeholder in the skeleton card + color: inherit; text-decoration: none; outline: none; // the focus ring is moved to the whole
  • }