aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/components/base/Link.astro
diff options
context:
space:
mode:
Diffstat (limited to 'apps/website/src/components/base/Link.astro')
-rw-r--r--apps/website/src/components/base/Link.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/website/src/components/base/Link.astro b/apps/website/src/components/base/Link.astro
index 30b95de..dfb6425 100644
--- a/apps/website/src/components/base/Link.astro
+++ b/apps/website/src/components/base/Link.astro
@@ -7,7 +7,7 @@ interface Props extends HTMLAttributes<'a'> {
const props = Astro.props;
const className = [
- 'hover:text-blue-500 underline decoration-[transparent] hover:decoration-blue-500 transition-colors',
+ 'text-current hover:text-blue-500 underline decoration-[transparent] hover:decoration-blue-500 transition-colors',
props.class,
].join(' ');
---