little bit of link css changes

This commit is contained in:
2025-11-14 11:56:42 +13:00
parent 54430fa3f4
commit 55ad345d1c
5 changed files with 11 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ const links = [
{
links.map((l, i) => (
<>
<a href={l.lnk}>{l.txt}</a>
<a class="b1-no-underline" href={l.lnk}>{l.txt}</a>
{i < links.length - 1 && <span class="text-(--accent)"> | </span>}
</>
))

View File

@@ -19,7 +19,7 @@ const links = [
{
links.map((l, i) => (
<>
<a href={l.lnk}>{l.txt}</a>
<a class="b1-no-underline" href={l.lnk}>{l.txt}</a>
{i < links.length - 1 && <span class="text-(--accent)"> • </span>}
</>
))

View File

@@ -4,7 +4,7 @@ import Footer from "./footer.astro"
---
<div class="w-[32%] py-14 h-screen text-center flex flex-col">
<a href="/" class="text-4xl">breadone dot net</a>
<a href="/" class="b1-no-underline text-4xl">breadone dot net</a>
<Navbar/>
<!-- Lil spacer -->
<div class="mt-8"/>

View File

@@ -10,7 +10,7 @@ import Sidebar from "src/components/sidebar.astro"
<div class="content-panel">
<p class="text-xl">Copyright & License</p>
<p>© {new Date().getFullYear()} breadone.net. All Rights Reserved.</p>
<p>© 2023-{new Date().getFullYear()} breadone.net. All Rights Reserved.</p>
<p>
All content on this website, including but not limited to text, images,

View File

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