From 17362c0cb0961946f6dcc87270ae76e39625aa7b Mon Sep 17 00:00:00 2001 From: Simeon Cheeseman <1085899+SimeonC@users.noreply.github.com> Date: Wed, 20 Sep 2023 19:00:06 +0900 Subject: [PATCH] fix: spinner should resize correctly --- system/core/src/components/Spinner.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/core/src/components/Spinner.ts b/system/core/src/components/Spinner.ts index 665ab18a4..d97fd18df 100644 --- a/system/core/src/components/Spinner.ts +++ b/system/core/src/components/Spinner.ts @@ -32,6 +32,8 @@ export const beforeStyles = css` ${positioningStyles} -webkit-mask-image: url('data:image/svg+xml; utf8, '); mask-image: url('data:image/svg+xml; utf8, '); + -webkit-mask-size: cover; + mask-size: cover; animation: ${rotateAnimation} 800ms infinite linear; background-color: currentColor; `;