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

57 lines
907 B
SCSS
Raw Normal View History

2022-04-24 11:23:10 +01:00
@use '../../partials/screen';
2021-07-28 18:45:52 +05:30
.client-container {
display: flex;
height: 100%;
}
.navigation__wrapper {
width: var(--navigation-width);
2022-04-24 11:23:10 +01:00
@include screen.smallerThan(mobileBreakpoint) {
width: 100%;
}
2021-07-28 18:45:52 +05:30
}
2022-04-24 11:23:10 +01:00
2021-08-31 18:43:31 +05:30
.room__wrapper {
2021-07-28 18:45:52 +05:30
flex: 1;
min-width: 0;
}
2022-04-24 11:23:10 +01:00
@include screen.smallerThan(mobileBreakpoint) {
.client__item-hidden {
display: none;
}
}
2021-07-28 18:45:52 +05:30
.loading-display {
position: absolute;
top: 0;
left: 0;
width: 100vw;
2021-11-11 16:47:08 +05:30
height: 100%;
2021-07-28 18:45:52 +05:30
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.loading__message {
margin-top: var(--sp-normal);
2021-10-27 19:00:31 +05:30
max-width: 350px;
text-align: center;
2021-07-28 18:45:52 +05:30
}
.loading__appname {
position: absolute;
bottom: var(--sp-normal);
2021-10-27 17:08:26 +05:30
}
2022-09-17 15:48:45 +05:30
.loading__menu {
2021-10-27 17:08:26 +05:30
position: absolute;
2022-09-17 15:48:45 +05:30
top: var(--sp-extra-tight);
2021-10-27 17:08:26 +05:30
right: var(--sp-extra-tight);
cursor: pointer;
2022-09-17 15:48:45 +05:30
.context-menu__item .text {
margin: 0 !important;
2021-10-27 17:08:26 +05:30
}
2022-04-24 11:23:10 +01:00
}