little bit of link css changes
This commit is contained in:
@@ -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>}
|
||||
</>
|
||||
))
|
||||
|
||||
@@ -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>}
|
||||
</>
|
||||
))
|
||||
|
||||
@@ -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"/>
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user