diff options
author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2024-01-01 12:46:03 +0100 |
---|---|---|
committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2024-01-01 12:46:03 +0100 |
commit | afd29e77a9dbc427902ecb7c04a5d218ab39fd6b (patch) | |
tree | 9e1ea91fa1523aba0cb2616929373960450eacaa /apps/website/src/components/base/Link.astro | |
parent | 634d75560bcb3e15687ddf97ed0e5e0ba24091e0 (diff) | |
download | Nexus-afd29e77a9dbc427902ecb7c04a5d218ab39fd6b.tar.gz Nexus-afd29e77a9dbc427902ecb7c04a5d218ab39fd6b.tar.bz2 Nexus-afd29e77a9dbc427902ecb7c04a5d218ab39fd6b.zip |
Index page
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(' '); --- |