Skip to content

Commit

Permalink
fix: correct colors on navigation drawer
Browse files Browse the repository at this point in the history
  • Loading branch information
youwen5 committed May 5, 2024
1 parent 17a6061 commit afbce7e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib/components/Navbar/Drawer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<span class="px-2 flex justify-center">
<Name href="/" width="80vw" height="auto" />
</span>
<Separator class="h-1 rounded-3xl mt-1 dark:bg-zinc-500" />
<Separator class="bg-zinc-300 h-1 rounded-3xl mt-1 dark:bg-zinc-500" />
</Drawer.Title>
<div class="grid grid-cols-1 my-10 gap-4">
<Drawer.Close asChild let:builder>
Expand All @@ -37,7 +37,7 @@
><Home class="mr-2" />Home</Button
>
</Drawer.Close>
<Separator class="dark:bg-zinc-500" />
<Separator class="bg-zinc-400 dark:bg-zinc-500" />
<Drawer.Close asChild let:builder>
<Button
variant="link"
Expand All @@ -47,7 +47,7 @@
><Person class="mr-2" />About Me</Button
>
</Drawer.Close>
<Separator class="dark:bg-zinc-500" />
<Separator class="bg-zinc-400 dark:bg-zinc-500" />
<Drawer.Close asChild let:builder>
<Button
variant="link"
Expand All @@ -57,7 +57,7 @@
><Backpack class="mr-2" />Portfolio</Button
>
</Drawer.Close>
<Separator class="dark:bg-zinc-500" />
<Separator class="bg-zinc-400 dark:bg-zinc-500" />
<Drawer.Close asChild let:builder>
<Button
href="/blog"
Expand All @@ -67,7 +67,7 @@
><File class="mr-2" />Blog</Button
>
</Drawer.Close>
<Separator class="h-1 rounded-3xl mt-1 dark:bg-zinc-500 my-2" />
<Separator class="bg-zinc-300 h-1 rounded-3xl mt-1 dark:bg-zinc-500 my-2" />
<ThemePicker let:builder hideLabel wide>
<Button variant="outline" size="lg" builders={[builder]}>
<Sun class="mr-4 dark:hidden" />
Expand Down

1 comment on commit afbce7e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (1)

mdlintrc

To accept these unrecognized words as correct, you could run the following commands

... in a clone of the [email protected]:couscousdude/coredump.git repository
on the main branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/couscousdude/coredump/actions/runs/8960036595/attempts/1'
Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionary

This includes both expected items (211) from .github/actions/spelling/expect.txt and unrecognized words (1)

Dictionary Entries Covers Uniquely
cspell:cryptocurrencies/cryptocurrencies.txt 125 1 1
cspell:ruby/dict/ruby.txt 157 1 1

Consider adding them (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

      with:
        extra_dictionaries:
          cspell:cryptocurrencies/cryptocurrencies.txt
          cspell:ruby/dict/ruby.txt

To stop checking additional dictionaries, add (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

check_extra_dictionaries: ''
Errors (1)

See the 📜action log or 📝 job summary for details.

❌ Errors Count
❌ check-file-path 1

See ❌ Event descriptions for more information.

Please sign in to comment.