Skip to content

Commit

Permalink
fix: fix rotation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
khawarizmus committed Feb 21, 2023
1 parent 724785b commit 1a14b8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/Moon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<text
v-if="showGuide"
class="origin-center"
:transform="`rotate(-${monthsRotation})`"
:transform="`rotate(${-monthsRotation})`"
>
<textPath
class="font-mono text-7xl fill-gray-300"
Expand All @@ -62,7 +62,7 @@
<text
v-if="showGuide"
class="origin-center"
:transform="`rotate(-${daysRotation})`"
:transform="`rotate(${-daysRotation})`"
>
<textPath
class="font-mono text-6xl fill-gray-300"
Expand Down

0 comments on commit 1a14b8a

Please sign in to comment.