mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-01 08:23:09 +05:30
26 lines
317 B
SCSS
26 lines
317 B
SCSS
.container {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.loader {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.image {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
opacity: 0;
|
|
transition: 0.4s ease-in;
|
|
}
|
|
|
|
.imageLoaded {
|
|
opacity: 1;
|
|
}
|