alpha
Login
or
Join now
pds.dad
/
my-website
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
WIP: My personal website
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
nav bar color change
author
Bailey Townsend
date
2 weeks ago
(Jun 7, 2026, 6:20 PM -0500)
commit
d742cea0
d742cea0e1af4904d2f5aa9a6ce19bba91d8ba58
parent
9b345cc5
9b345cc5aaeca78c1e95ccade704c30223532d49
+3
-3
1 changed file
Expand all
Collapse all
Unified
Split
src
lib
components
NavBar.svelte
+3
-3
src/lib/components/NavBar.svelte
Reviewed
···
135
135
{#if item.children}
136
136
<li>
137
137
<details>
138
138
-
<summary class="font-urbanist {isActive(item) ? 'menu-active' : ''}">
138
138
+
<summary class="font-urbanist {isActive(item) ? 'bg-base-300' : ''}">
139
139
{item.name}
140
140
</summary>
141
141
<ul>
···
143
143
<li>
144
144
<a
145
145
href={child.href}
146
146
-
class="font-urbanist {active === child.href ? 'menu-active' : ''}"
146
146
+
class="font-urbanist {active === child.href ? 'bg-base-300' : ''}"
147
147
>
148
148
{child.name}
149
149
</a>
···
154
154
</li>
155
155
{:else}
156
156
<li>
157
157
-
<a href={item.href} class="font-urbanist {isActive(item) ? 'menu-active' : ''}">
157
157
+
<a href={item.href} class="font-urbanist {isActive(item) ? 'bg-base-300' : ''}">
158
158
{item.name}
159
159
</a>
160
160
</li>