Skip to content

Commit 5ec5497

Browse files
authored
Merge pull request #58 from FashionLab/tkp/toptext
Tweak top text color
2 parents 6e1431c + 32b5d75 commit 5ec5497

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ vite.config.ts.timestamp-*
2222

2323
# Tests
2424
test-results
25+
26+
# Deploy
27+
tmp-repo

src/lib/Header.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<a href="/" class="flex items-center py-4 px-2">
1919
<img src="/favicon.png" alt="Logo" class="h-4 w-4 mr-2" />
2020
<span
21-
class="tracking-widest leading-tight font-normal text-neutral-300 text-lg"
21+
class="tracking-widest leading-tight font-normal text-lg"
2222
class:text-black={y < 50}
2323
class:text-white={y >= 50}>FashionLab</span
2424
>
@@ -31,7 +31,7 @@
3131
<div class="hidden md:flex items-center space-x-1">
3232
<a
3333
href="#about"
34-
class="py-2 px-2 rounded text-neutral-300 font-semibold hover:text-neutral-200 hover:bg-neutral-600 transition duration-300"
34+
class="py-2 px-2 rounded font-semibold hover:text-neutral-200 hover:bg-neutral-600 transition duration-300"
3535
class:text-black={y < 50}
3636
class:text-white={y >= 50}>About</a
3737
>
@@ -41,7 +41,7 @@
4141
<div class="hidden md:flex items-center space-x-3">
4242
<a
4343
href="#contact"
44-
class="py-2 px-2 rounded text-neutral-300 font-semibold hover:text-neutral-200 hover:bg-neutral-600 transition duration-300"
44+
class="py-2 px-2 rounded font-semibold hover:text-neutral-200 hover:bg-neutral-600 transition duration-300"
4545
class:text-black={y < 50}
4646
class:text-white={y >= 50}>Contact</a
4747
>

0 commit comments

Comments
 (0)