2022-05-04 09:55:44 +02:00
|
|
|
.root {
|
2022-05-07 19:25:04 +02:00
|
|
|
background-color: var(--theme-background-secondary);
|
2022-05-04 09:55:44 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.root {
|
2022-05-17 08:41:39 +02:00
|
|
|
position: sticky;
|
|
|
|
top: var(--header-h);
|
2022-05-04 09:55:44 +02:00
|
|
|
display: flex;
|
2022-05-17 08:41:39 +02:00
|
|
|
min-width: 300px !important;
|
|
|
|
max-height: calc(100vh - var(--header-h));
|
2022-05-04 09:55:44 +02:00
|
|
|
}
|
|
|
|
}
|