SillyTavern/public/css/loader.css

25 lines
537 B
CSS
Raw Normal View History

2023-10-31 21:16:33 +01:00
#loader {
position: fixed;
margin: 0;
padding: 0;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 999999;
width: 100vw;
height: 100vh;
width: 100svw;
height: 100svh;
background-color: var(--SmartThemeBlurTintColor);
2023-11-01 04:40:21 +01:00
/*for some reason the full screen blur does not work on iOS*/
backdrop-filter: blur(30px);
color: var(--SmartThemeBodyColor);
opacity: 1;
2023-10-31 21:16:33 +01:00
}
2023-11-01 04:40:21 +01:00
#load-spinner {
transition: all 300ms ease-out;
opacity: 1;
}