File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -912,8 +912,8 @@ Creates a locally scoped set of keyframes.
912912import { keyframes , style } from ' @vanilla-extract/css' ;
913913
914914const rotate = keyframes ({
915- ' 0%' : { rotate : ' 0deg' },
916- ' 100%' : { rotate : ' 360deg' },
915+ ' 0%' : { transform : ' rotate( 0deg) ' },
916+ ' 100%' : { transform : ' rotate( 360deg) ' }
917917});
918918
919919export const animated = style ({
@@ -929,8 +929,8 @@ Creates a globally scoped set of keyframes.
929929import { globalKeyframes , style } from ' @vanilla-extract/css' ;
930930
931931globalKeyframes (' rotate' , {
932- ' 0%' : { rotate : ' 0deg' },
933- ' 100%' : { rotate : ' 360deg' },
932+ ' 0%' : { transform : ' rotate( 0deg) ' },
933+ ' 100%' : { transform : ' rotate( 360deg) ' }
934934});
935935
936936export const animated = style ({
Original file line number Diff line number Diff line change @@ -565,8 +565,8 @@ Creates a locally scoped set of keyframes.
565565import { keyframes , style } from ' @vanilla-extract/css' ;
566566
567567const rotate = keyframes ({
568- ' 0%' : { rotate : ' 0deg' },
569- ' 100%' : { rotate : ' 360deg' }
568+ ' 0%' : { transform : ' rotate( 0deg) ' },
569+ ' 100%' : { transform : ' rotate( 360deg) ' }
570570});
571571
572572export const animated = style ({
@@ -587,8 +587,8 @@ import {
587587} from ' @vanilla-extract/css' ;
588588
589589globalKeyframes (' rotate' , {
590- ' 0%' : { rotate : ' 0deg' },
591- ' 100%' : { rotate : ' 360deg' }
590+ ' 0%' : { transform : ' rotate( 0deg) ' },
591+ ' 100%' : { transform : ' rotate( 360deg) ' }
592592});
593593
594594export const animated = style ({
You can’t perform that action at this time.
0 commit comments