css: Fix last commit overflow should not apply to inner-editors (#3914)

* css: Fix last commit overflow should not apply to inner-editors

* css: hide toolbar popup and nice-select when clicking on pad
This commit is contained in:
Sebastian Castro 2020-04-21 23:46:54 +02:00 committed by GitHub
parent 7ec3be640b
commit 51d924c1f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 4 deletions

View file

@ -1,10 +1,12 @@
html, body {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
html:not(.inner-editor), html:not(.inner-editor) body {
overflow: hidden;
}
body {
display: flex;
flex-direction: column;