From da0c2f659e7854771c85d9dfa3d88770d27616b6 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 4 Sep 2025 11:37:06 +0800 Subject: [PATCH] Removed decoration on link component --- fwt/components/Link/Link.sass | 3 +++ fwt/components/Link/Link.tsx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 fwt/components/Link/Link.sass diff --git a/fwt/components/Link/Link.sass b/fwt/components/Link/Link.sass new file mode 100644 index 0000000..efc3b4f --- /dev/null +++ b/fwt/components/Link/Link.sass @@ -0,0 +1,3 @@ +a + text-decoration: none + color: inherit diff --git a/fwt/components/Link/Link.tsx b/fwt/components/Link/Link.tsx index acbd0b9..1e7e337 100644 --- a/fwt/components/Link/Link.tsx +++ b/fwt/components/Link/Link.tsx @@ -1,4 +1,4 @@ -// import { prefetch } from 'astro:prefetch' +import './Link.sass' interface Props { to: string