summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/components/analog-clock.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/components/analog-clock.vue b/src/client/components/analog-clock.vue
index 32b7ebb8e3..bc572e5fff 100644
--- a/src/client/components/analog-clock.vue
+++ b/src/client/components/analog-clock.vue
@@ -15,6 +15,7 @@
:y2="5 - (Math.cos(sAngle) * ((sHandLengthRatio * 5) - handsPadding))"
:stroke="sHandColor"
:stroke-width="thickness / 2"
+ stroke-linecap="round"
/>
<line
@@ -24,6 +25,7 @@
:y2="5 - (Math.cos(mAngle) * ((mHandLengthRatio * 5) - handsPadding))"
:stroke="mHandColor"
:stroke-width="thickness"
+ stroke-linecap="round"
/>
<line
@@ -33,6 +35,7 @@
:y2="5 - (Math.cos(hAngle) * ((hHandLengthRatio * 5) - handsPadding))"
:stroke="hHandColor"
:stroke-width="thickness"
+ stroke-linecap="round"
/>
</svg>
</template>