css: Fix some problems with new UI refs #3907 (#3908)

* css: Fix sidedivinner padding  creating ui problems refs #3907

* css: Fix colorpicker for mobile
This commit is contained in:
Sebastian Castro 2020-04-20 15:51:02 +02:00 committed by GitHub
parent 4ceb42603e
commit 84d82b506b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 37 additions and 30 deletions

View file

@ -49,8 +49,22 @@
--main-font-family: Quicksand, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
--editor-padding: 40px 55px;
--editor-padding-top: 40px;
--editor-horizontal-padding: 55px;
--editor-vertical-padding: 40px;
}
@media (max-width:1000px) {
:root {
--editor-horizontal-padding: 15px;
--editor-vertical-padding: 15px;
}
}
@media (max-width:600px) {
:root {
--editor-horizontal-padding: 15px;
--editor-vertical-padding: 15px;
}
}
/* Default scrollbar values */