Skip to content

Commit

Permalink
darkmode swich button
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRoehm committed Aug 11, 2024
1 parent 40389bc commit 492f80f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions components/Page/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@
</div>
<div class="flex flex-row items-center w-1/6 place-content-end">
<div v-if="$props.enableDarkOption" >
<button class="pr-2 hover:text-skin-accent hover:cursor-pointer"
data-testid="NavBar.darkmode" @click.stop="switchColorMode">
<svg v-if="$props.darkmode" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke-width="1.5" stroke="currentColor" class="w-4 h-4 sm:w-5 sm:h-5">
<path stroke-linecap="round" stroke-linejoin="round"
d="M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z" />
</svg>
<svg v-else xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-4 h-4 sm:w-5 sm:h-5">
<path stroke-linecap="round" stroke-linejoin="round"
d="M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z" />
</svg>
</button>
<button class="pr-2 hover:text-skin-accent hover:cursor-pointer" data-testid="NavBar.darkmode"
@click.stop="switchColorMode">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke-width="1.5" stroke="currentColor" class="dark:block hidden w-4 h-4 sm:w-5 sm:h-5">
<path stroke-linecap="round" stroke-linejoin="round"
d="M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="dark:hidden visible w-4 h-4 sm:w-5 sm:h-5">
<path stroke-linecap="round" stroke-linejoin="round"
d="M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z" />
</svg>
</button>
</div>
<div v-if="showMenuButton" >
<button class="hover:text-skin-accent hover:cursor-pointer mt-1" data-testid="NavBar.clickableElement" @click.stop="toggle('menu')">
Expand Down

0 comments on commit 492f80f

Please sign in to comment.