12 lines
258 B
CSS
12 lines
258 B
CSS
|
.loader-wrapper {
|
||
|
position: absolute;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
background: rgba(255, 255, 255, 0.3);
|
||
|
justify-content: center;
|
||
|
border-radius: 6px;
|
||
|
align-items: center;
|
||
|
z-index: 6;
|
||
|
pointer-events: none
|
||
|
}
|