2022-05-03 23:55:13 +02:00
|
|
|
.root {
|
2022-05-12 08:31:31 +02:00
|
|
|
display: grid;
|
2022-05-17 08:41:39 +02:00
|
|
|
grid-template-columns: 1fr auto;
|
2022-05-04 09:55:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mobileChat {
|
2022-05-22 14:55:52 +02:00
|
|
|
position: relative;
|
2022-05-12 08:31:31 +02:00
|
|
|
display: block;
|
|
|
|
top: 0px;
|
|
|
|
width: 100%;
|
2022-05-03 23:55:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.leftCol {
|
2022-05-12 08:31:31 +02:00
|
|
|
display: grid;
|
2022-05-03 23:55:13 +02:00
|
|
|
}
|
|
|
|
.lowerRow {
|
2022-05-12 08:31:31 +02:00
|
|
|
position: relative;
|
|
|
|
display: grid;
|
2022-05-04 09:55:44 +02:00
|
|
|
}
|
|
|
|
|
2022-05-18 01:07:56 +02:00
|
|
|
.buttonsLogoTitleSection {
|
|
|
|
margin-left: 1.5vw;
|
|
|
|
margin-right: 1.5vw;
|
|
|
|
}
|
|
|
|
|
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-18 01:07:56 +02:00
|
|
|
.logoTitleSection {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.titleSection {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-size: 2.5vw;
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--theme-text-primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
font-size: 1.6vw;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-26 05:38:40 +02:00
|
|
|
.loadingSpinner {
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
z-index: 999999;
|
|
|
|
}
|
|
|
|
|
2022-05-04 09:55:44 +02:00
|
|
|
@media (min-width: 768px) {
|
2022-05-12 08:31:31 +02:00
|
|
|
.mobileChat {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-05-04 09:55:44 +02:00
|
|
|
}
|