feat(core): remove loop animations (#8242)

This commit is contained in:
EYHN
2024-09-13 09:54:23 +00:00
parent 3c1cd6b648
commit 6fde967a6d
6 changed files with 13 additions and 128 deletions
@@ -12,10 +12,12 @@ const rotate = keyframes({
},
});
export const loading = style({
transform: 'rotate(-90deg)',
});
export const rotateAnimation = style({
vars: {
[speedVar]: '1.5s',
},
textRendering: 'optimizeLegibility',
transform: 'rotate(-90deg)',
animation: `${rotate} ${speedVar} infinite linear`,
});