22 lines
362 B
SCSS
22 lines
362 B
SCSS
.full-page-section,
|
|
.full-page-content {
|
|
position: fixed;
|
|
inset: 0;
|
|
}
|
|
|
|
.full-page-section {
|
|
opacity: 0.7;
|
|
background: var(--iqser-background);
|
|
z-index: 900;
|
|
}
|
|
|
|
.full-page-content {
|
|
z-index: 1000;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
display: flex;
|
|
max-width: 80vw;
|
|
margin: auto;
|
|
}
|