Skip to content

Commit

Permalink
cleanup: add underline when hovering links in footer
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Aug 25, 2024
1 parent 94165b0 commit bc99032
Showing 1 changed file with 37 additions and 13 deletions.
50 changes: 37 additions & 13 deletions content/.vitepress/theme/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,25 @@
<h3 class="text-white text-opacity-70 text-base font-semibold">
Help
</h3>
<a href="/docs" class="text-white text-opacity-40">Documentation</a>
<a href="/getting-started" class="text-white text-opacity-40"
<a href="/docs" class="text-white text-opacity-40 hover:underline"
>Documentation</a
>
<a
href="/getting-started"
class="text-white text-opacity-40 hover:underline"
>Getting Started</a
>
<a href="/package" class="text-white text-opacity-40"
<a href="/package" class="text-white text-opacity-40 hover:underline"
>Package for Your Distribution</a
>
<a href="/share/stacks" class="text-white text-opacity-40"
<a
href="/share/stacks"
class="text-white text-opacity-40 hover:underline"
>Sharing Stacks</a
>
<a href="/create/stacks" class="text-white text-opacity-40"
<a
href="/create/stacks"
class="text-white text-opacity-40 hover:underline"
>Creating Stacks</a
>
</div>
Expand All @@ -108,17 +116,27 @@
<h3 class="text-white text-opacity-70 text-base font-semibold">
Developers
</h3>
<a href="/docs" class="text-white text-opacity-40">Source Code</a>
<a href="/getting-started" class="text-white text-opacity-40"
<a href="/docs" class="text-white text-opacity-40 hover:underline"
>Source Code</a
>
<a
href="/getting-started"
class="text-white text-opacity-40 hover:underline"
>Report a bug</a
>
</div>
<div class="flex flex-col gap-2">
<h3 class="text-white text-opacity-70 text-base font-semibold">
Get Apx
</h3>
<a href="/download" class="text-white text-opacity-40">Download</a>
<a href="https://github.com/" class="text-white text-opacity-40"
<a
href="/download"
class="text-white text-opacity-40 hover:underline"
>Download</a
>
<a
href="https://github.com/"
class="text-white text-opacity-40 hover:underline"
>Build From Source</a
>
</div>
Expand All @@ -127,11 +145,15 @@
<h3 class="text-white text-opacity-70 text-base font-semibold">
Community
</h3>
<a href="/docs" class="text-white text-opacity-40">GitHub</a>
<a href="/getting-started" class="text-white text-opacity-40"
<a href="/docs" class="text-white text-opacity-40 hover:underline"
>GitHub</a
>
<a
href="/getting-started"
class="text-white text-opacity-40 hover:underline"
>Discord Community</a
>
<a href="/package" class="text-white text-opacity-40"
<a href="/package" class="text-white text-opacity-40 hover:underline"
>Community Stacks</a
>
</div>
Expand All @@ -157,7 +179,9 @@
</p>
<p class="text-white text-opacity-40">
Sponsored by
<a href="https://fabricators.ltd" class="text-green-500"
<a
href="https://fabricators.ltd"
class="text-green-500 hover:underline"
>fabricators.ltd</a
>
</p>
Expand Down

0 comments on commit bc99032

Please sign in to comment.