27 lines
444 B
SCSS
27 lines
444 B
SCSS
.file-drop-section {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 1000;
|
|
padding: 12px;
|
|
opacity: 0.7;
|
|
background: var(--iqser-white);
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
mat-icon {
|
|
height: 60px;
|
|
width: 60px;
|
|
}
|
|
|
|
.heading-xl {
|
|
margin-top: 24px;
|
|
}
|
|
}
|