ui: hide @ mobile

This commit is contained in:
cha0s 2020-07-14 03:45:21 -05:00
parent 7982eb054a
commit 5eac0a8469

View File

@ -1,3 +1,5 @@
@import '~/client/scss/breakpoints.scss';
.chat { .chat {
display: flex; display: flex;
height: 100%; height: 100%;
@ -5,7 +7,11 @@
} }
.flexed { .flexed {
display: none;
height: 100%; height: 100%;
width: 4em; width: 4em;
overflow: hidden; overflow: hidden;
@include breakpoint(tablet) {
display: block;
}
} }