diff options
author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2024-01-01 18:09:56 +0100 |
---|---|---|
committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2024-01-01 18:09:56 +0100 |
commit | 2195d88b8982e2c9ee18cb4bbdee121724e07d41 (patch) | |
tree | 352467d2caf55d89127130e22104600dd538ccde /apps/website/src/components | |
parent | afd29e77a9dbc427902ecb7c04a5d218ab39fd6b (diff) | |
download | Nexus-2195d88b8982e2c9ee18cb4bbdee121724e07d41.tar.gz Nexus-2195d88b8982e2c9ee18cb4bbdee121724e07d41.tar.bz2 Nexus-2195d88b8982e2c9ee18cb4bbdee121724e07d41.zip |
Index page changes to the top bar and make the big card flex
Diffstat (limited to 'apps/website/src/components')
-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 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(' '); --- |