Skip to content

Commit

Permalink
Update SVG fill opacity and decrease size
Browse files Browse the repository at this point in the history
  • Loading branch information
AVGVSTVS96 committed Jan 8, 2024
1 parent 491d0fd commit 85a8f69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/subComponents/ThemeToggle.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---

<button id="themeToggle" class="mr-4">
<svg width="30px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<svg width="26px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
class="sun"
fill-rule="evenodd"
Expand All @@ -23,7 +23,7 @@
background: none;
}
.sun {
fill: white;
fill: rgb(250, 250, 250, 0.7);
}
.moon {
fill: transparent;
Expand All @@ -33,7 +33,7 @@
fill: transparent;
}
:global(.dark) .moon {
fill: white;
fill: rgb(250, 250, 250, 0.7);
}
</style>

Expand Down

0 comments on commit 85a8f69

Please sign in to comment.