From 55ad345d1c99d7b1012ffe43c40445c6c6825859 Mon Sep 17 00:00:00 2001 From: June Date: Fri, 14 Nov 2025 11:56:42 +1300 Subject: [PATCH] little bit of link css changes --- web/src/components/footer.astro | 2 +- web/src/components/index/navbar.astro | 2 +- web/src/components/sidebar.astro | 2 +- web/src/pages/copyright.astro | 2 +- web/src/styles/global.css | 9 +++++++-- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/web/src/components/footer.astro b/web/src/components/footer.astro index 1e91894..43c92a4 100644 --- a/web/src/components/footer.astro +++ b/web/src/components/footer.astro @@ -23,7 +23,7 @@ const links = [ { links.map((l, i) => ( <> - {l.txt} + {l.txt} {i < links.length - 1 && | } )) diff --git a/web/src/components/index/navbar.astro b/web/src/components/index/navbar.astro index a65c565..f3acbba 100644 --- a/web/src/components/index/navbar.astro +++ b/web/src/components/index/navbar.astro @@ -19,7 +19,7 @@ const links = [ { links.map((l, i) => ( <> - {l.txt} + {l.txt} {i < links.length - 1 && } )) diff --git a/web/src/components/sidebar.astro b/web/src/components/sidebar.astro index 4df64b1..c6ce159 100644 --- a/web/src/components/sidebar.astro +++ b/web/src/components/sidebar.astro @@ -4,7 +4,7 @@ import Footer from "./footer.astro" ---
- breadone dot net + breadone dot net
diff --git a/web/src/pages/copyright.astro b/web/src/pages/copyright.astro index aaf1656..1fbcdff 100644 --- a/web/src/pages/copyright.astro +++ b/web/src/pages/copyright.astro @@ -10,7 +10,7 @@ import Sidebar from "src/components/sidebar.astro"

Copyright & License

-

© {new Date().getFullYear()} breadone.net. All Rights Reserved.

+

© 2023-{new Date().getFullYear()} breadone.net. All Rights Reserved.

All content on this website, including but not limited to text, images, diff --git a/web/src/styles/global.css b/web/src/styles/global.css index 6827641..9dbbdb4 100644 --- a/web/src/styles/global.css +++ b/web/src/styles/global.css @@ -28,9 +28,14 @@ @apply bg-(--bg-light); } + .b1-no-underline { + @apply no-underline hover:underline; + @apply decoration-(--accent); + } + a { - @apply hover:underline; - text-decoration-color: var(--accent); + @apply text-black underline decoration-black; + @apply hover:decoration-(--accent); } }