21 lines
248 B
SCSS
21 lines
248 B
SCSS
|
.container {
|
||
|
position: absolute;
|
||
|
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: 100;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
gap: 6px;
|
||
|
|
||
|
width: 100dvw;
|
||
|
height: 100dvh;
|
||
|
|
||
|
img {
|
||
|
width: 100px;
|
||
|
}
|
||
|
}
|