31 lines
No EOL
466 B
SCSS
31 lines
No EOL
466 B
SCSS
/* FIXME: Remove this wired import */
|
|
:global {
|
|
@import "../../../../css/static/general";
|
|
@import "../../../../css/static/modal";
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
.container {
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: stretch;
|
|
|
|
max-height: 100vh;
|
|
max-width: 100vw;
|
|
|
|
overflow: hidden;
|
|
} |