Added mobile chat and some responsiveness

weird 0 popping out when toggling chat. wasn't able to find which
component is responsible. Used bare mininum scss. May refactor in the
future.
This commit is contained in:
t1enne
2022-05-04 09:55:44 +02:00
parent 502cf4478a
commit 2cfb336411
6 changed files with 66 additions and 18 deletions

View File

@@ -0,0 +1,12 @@
.root {
background-color: var(--gray-700);
display: none;
}
@media (min-width: 768px) {
.root {
display: flex;
}
}