From 2caffc2f3b14546c1ab4f8f568a3efb4b3d8141a Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Mon, 26 Sep 2022 12:31:07 +0630 Subject: [PATCH] Remove card title underline style while focus --- src/components/Card.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Card.tsx b/src/components/Card.tsx index f26b3ed..446a6ab 100644 --- a/src/components/Card.tsx +++ b/src/components/Card.tsx @@ -10,7 +10,7 @@ export interface Props { const styles = { cardContainer: "my-6", titleLink: - "text-skin-accent font-medium text-lg underline-offset-4 decoration-dashed focus-visible:underline inline-block", + "text-skin-accent font-medium text-lg underline-offset-4 decoration-dashed focus-visible:no-underline focus-visible:underline-offset-0 inline-block", titleHeading: "font-medium text-lg decoration-dashed hover:underline", };