fixed mobile ui overflowing

This commit is contained in:
t1enne
2022-10-13 20:13:37 +02:00
parent 5eebb10fe6
commit ecfb4a4c53
5 changed files with 22 additions and 15 deletions

View File

@@ -1,16 +1,16 @@
.root {
background-color: var(--theme-color-background-chat);
display: none;
--header-h: 64px;
// --header-h: 64px;
}
@media (min-width: 768px) {
.root {
position: sticky;
top: var(--header-h);
// top: var(--header-h);
display: block;
height: calc(100vh - var(--header-h));
max-height: calc(100vh - var(--header-h));
// height: calc(100vh - var(--header-h));
// max-height: calc(100vh - var(--header-h));
}
}
/*