From e66818eb842265831319347337c3edf4bc4aed87 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 27 Jul 2022 11:57:09 -0700 Subject: [PATCH] hopefully fix fo the last time --- .../client/src/components/global/loading.vue | 35 ++++++++++--------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/packages/client/src/components/global/loading.vue b/packages/client/src/components/global/loading.vue index 6dbf4a9bd..54d449351 100644 --- a/packages/client/src/components/global/loading.vue +++ b/packages/client/src/components/global/loading.vue @@ -83,24 +83,25 @@ const props = withDefaults(defineProps<{ } } - @keyframes dash { - 0% { - stroke-dasharray: 1, 150; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -35; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -124; - } - } &.path { - stroke: var(--accent); - stroke-linecap: round; - animation: dash 1.5s ease-in-out infinite; + @keyframes dash { + 0% { + stroke-dasharray: 1, 150; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -35; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -124; + } + } + + stroke: var(--accent); + stroke-linecap: round; + animation: dash 1.5s ease-in-out infinite; } }