34 lines
605 B
SCSS
34 lines
605 B
SCSS
@use 'common-mixins';
|
|
|
|
:host {
|
|
min-height: 100vh;
|
|
background-color: var(--iqser-alt-background);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.container {
|
|
padding: 32px;
|
|
width: 900px;
|
|
max-width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
|
|
.dialog {
|
|
flex-direction: row;
|
|
max-width: unset;
|
|
min-height: unset;
|
|
margin: 0 0 16px 0;
|
|
|
|
> div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
redaction-skeleton-stats {
|
|
border-left: 1px solid var(--iqser-separator);
|
|
}
|
|
}
|