don't override mobile ui or drawer when resizing

staging
multiple creatures 2019-07-17 17:39:33 -05:00
parent 3f1e5d2f87
commit 54c3ac4aba
1 changed files with 20 additions and 23 deletions

View File

@ -1,18 +1,13 @@
.drawer{
padding-top: 10px;
padding-bottom: 0;
flex: 0 1 300px;
max-width: 300px !important;
min-width: 300px !important;
}
:root {
@media screen and (min-width: 600px) {
.column {
min-width: 300px !important;
max-width: 480px !important;
flex: 2 1 auto !important;
min-width: 300px;
max-width: 480px;
flex: 2 1 auto;
filter: initial;
}
.column:last-child {
flex: 1 2 auto !important;
flex: 1 2 auto;
}
.columns-area {
display: flex;
@ -22,3 +17,5 @@
.composer--upload_form--item {
flex: 1 0 100%;
}
}
}