Skip to content

Commit

Permalink
add margin to theme switch
Browse files Browse the repository at this point in the history
  • Loading branch information
JustineLicuanan committed Mar 5, 2023
1 parent 9c7d667 commit 0e1d634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ThemeSwitch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<button
@click="toggleDark()"
class="rounded bg-green-500 py-1 px-4 text-white transition-colors duration-75 hover:bg-green-700"
class="mb-5 rounded bg-green-500 py-1 px-4 text-white transition-colors duration-75 hover:bg-green-700"
>
<MoonIcon class="inline-block h-5 w-5 align-middle" v-if="isDark" />
<SunIcon class="inline-block h-5 w-5 align-middle" v-else />
Expand Down

0 comments on commit 0e1d634

Please sign in to comment.