diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-07-19 23:48:22 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-07-19 23:48:22 +0900 |
| commit | 248edb5dfdefc79ade69ead6512ae2d724d6e225 (patch) | |
| tree | ccaffe3278ef8f773163361eafebcaf513645b84 /src | |
| parent | Tweak design (diff) | |
| download | sharkey-248edb5dfdefc79ade69ead6512ae2d724d6e225.tar.gz sharkey-248edb5dfdefc79ade69ead6512ae2d724d6e225.tar.bz2 sharkey-248edb5dfdefc79ade69ead6512ae2d724d6e225.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/analog-clock.vue | 3 |
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> |