2022-05-03 23:55:13 +02:00
|
|
|
.root {
|
|
|
|
display: grid;
|
2022-05-04 09:55:44 +02:00
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobileChat {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
background-color: white;
|
|
|
|
top: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: calc(50vh - var(--header-h));
|
2022-05-03 23:55:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.leftCol {
|
|
|
|
display: grid;
|
|
|
|
// -64px, which is the header
|
2022-05-04 09:55:44 +02:00
|
|
|
grid-template-rows: 50vh calc(50vh - var(--header-h));
|
2022-05-03 23:55:13 +02:00
|
|
|
}
|
|
|
|
.lowerRow {
|
2022-05-04 09:55:44 +02:00
|
|
|
position: relative;
|
2022-05-03 23:55:13 +02:00
|
|
|
display: grid;
|
2022-05-04 09:55:44 +02:00
|
|
|
grid-template-rows: 1fr var(--header-h);
|
|
|
|
}
|
|
|
|
|
2022-05-07 19:25:04 +02:00
|
|
|
.pageContentSection {
|
|
|
|
background-color: var(--theme-background-secondary);
|
|
|
|
border-radius: var(--theme-rounded-corners);
|
|
|
|
margin: 1vw;
|
|
|
|
padding: 1vw;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-05-04 09:55:44 +02:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
.mobileChat {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.root[data-columns='2'] {
|
|
|
|
grid-template-columns: 1fr var(--chat-w);
|
|
|
|
}
|
|
|
|
}
|