WIP: My personal website
0

Configure Feed

Select the types of activity you want to include in your feed.

nav bar color change

+3 -3
+3 -3
src/lib/components/NavBar.svelte
··· 135 135 {#if item.children} 136 136 <li> 137 137 <details> 138 - <summary class="font-urbanist {isActive(item) ? 'menu-active' : ''}"> 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 - class="font-urbanist {active === child.href ? 'menu-active' : ''}" 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 - <a href={item.href} class="font-urbanist {isActive(item) ? 'menu-active' : ''}"> 157 + <a href={item.href} class="font-urbanist {isActive(item) ? 'bg-base-300' : ''}"> 158 158 {item.name} 159 159 </a> 160 160 </li>