2022-05-03 23:55:13 +02:00
|
|
|
.root {
|
2022-05-11 23:31:31 -07:00
|
|
|
display: grid;
|
2022-05-17 08:41:39 +02:00
|
|
|
grid-template-columns: 1fr auto;
|
2022-07-03 12:36:30 +02:00
|
|
|
&.mobile {
|
2022-07-08 09:10:18 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: calc(100vh - 64px);
|
|
|
|
overflow-y: hidden;
|
|
|
|
.topHalf {
|
|
|
|
border: 1px dashed white;
|
|
|
|
height: calc(40vh - 64px);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.lowerHalf {
|
|
|
|
border: 1px dashed red;
|
|
|
|
height: 60vh;
|
|
|
|
}
|
2022-07-03 12:36:30 +02:00
|
|
|
}
|
2022-05-04 09:55:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mobileChat {
|
2022-05-22 14:55:52 +02:00
|
|
|
position: relative;
|
2022-05-11 23:31:31 -07:00
|
|
|
display: block;
|
2022-07-03 12:36:30 +02:00
|
|
|
// top: 0px;
|
2022-05-11 23:31:31 -07:00
|
|
|
width: 100%;
|
2022-07-03 12:36:30 +02:00
|
|
|
[data-virtuoso-scroller] {
|
|
|
|
height: 500px;
|
|
|
|
}
|
2022-05-03 23:55:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.leftCol {
|
2022-07-03 12:36:30 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-05-03 23:55:13 +02:00
|
|
|
}
|
2022-05-17 16:07:56 -07:00
|
|
|
|
2022-05-25 20:38:40 -07:00
|
|
|
.loadingSpinner {
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
z-index: 999999;
|
|
|
|
}
|
|
|
|
|