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" ---
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); } }