diff options
Diffstat (limited to 'apps/website/src/components/base/Link.astro')
-rw-r--r-- | apps/website/src/components/base/Link.astro | 2 |
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 a357c9c..30b95de 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 hover:underline transition-colors', + 'hover:text-blue-500 underline decoration-[transparent] hover:decoration-blue-500 transition-colors', props.class, ].join(' '); --- |