1- import { style , keyframes } from "@vanilla-extract/css" ;
1+ import { style } from "@vanilla-extract/css" ;
22
33import { themeVars } from "@/app/styles" ;
44
5- const rotate = keyframes ( {
6- "0%" : { transform : "rotate(0deg)" } ,
7- "100%" : { transform : "rotate(360deg)" } ,
8- } ) ;
9-
105export const overlay = style ( {
116 position : "fixed" ,
127 top : 0 ,
@@ -19,7 +14,8 @@ export const overlay = style({
1914 justifyContent : "center" ,
2015 alignItems : "center" ,
2116
22- backgroundColor : "rgba(255, 255, 255, 0.5)" ,
17+ opacity : "0.6" ,
18+ backgroundColor : themeVars . color . gray800 ,
2319 backdropFilter : "blur(8px)" ,
2420 WebkitBackdropFilter : "blur(8px)" ,
2521} ) ;
@@ -32,12 +28,12 @@ export const container = style({
3228} ) ;
3329
3430export const spinner = style ( {
35- width : "10rem " ,
36- height : "10rem " ,
37- animation : ` ${ rotate } 1.5s linear infinite` ,
31+ width : "22rem " ,
32+ height : "10.8rem " ,
33+ aspectRatio : 55 / 27 ,
3834} ) ;
3935
4036export const text = style ( {
41- color : themeVars . color . black ,
42- ...themeVars . fontStyles . hding_b_22 ,
37+ color : themeVars . color . white ,
38+ ...themeVars . fontStyles . title_m_24 ,
4339} ) ;
0 commit comments