2022-05-04 00:55:13 +03:00
|
|
|
.root {
|
2022-05-12 09:31:31 +03:00
|
|
|
display: grid;
|
2022-05-17 09:41:39 +03:00
|
|
|
grid-template-columns: 1fr auto;
|
2022-07-11 02:42:35 +03:00
|
|
|
padding: 0.7em;
|
2022-05-04 10:55:44 +03:00
|
|
|
}
|
|
|
|
|
2022-05-04 00:55:13 +03:00
|
|
|
.leftCol {
|
2022-07-03 13:36:30 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-05-04 00:55:13 +03:00
|
|
|
}
|
2022-05-18 02:07:56 +03:00
|
|
|
|
2022-05-26 06:38:40 +03:00
|
|
|
.loadingSpinner {
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
z-index: 999999;
|
|
|
|
}
|
|
|
|
|
2022-07-08 23:20:22 +03:00
|
|
|
.mobile {
|
|
|
|
&.root {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: calc(100vh - 64px);
|
|
|
|
overflow: hidden;
|
|
|
|
.topHalf {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 30vh 5vh 5vh;
|
|
|
|
height: 40vh;
|
|
|
|
// overflow: hidden;
|
|
|
|
}
|
|
|
|
.lowerHalf {
|
|
|
|
height: 60vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.mobileChat {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|