cinny/src/app/templates/client/Client.scss

34 lines
518 B
SCSS
Raw Normal View History

2021-07-28 16:15:52 +03:00
.client-container {
display: flex;
height: 100%;
}
.navigation__wrapper {
width: var(--navigation-width);
}
2021-08-31 16:13:31 +03:00
.room__wrapper {
2021-07-28 16:15:52 +03:00
flex: 1;
min-width: 0;
background-color: var(--bg-surface);
}
.loading-display {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.loading__message {
margin-top: var(--sp-normal);
}
.loading__appname {
position: absolute;
bottom: var(--sp-normal);
}