Site Editor - hide scrollbars if not needed

This commit is contained in:
Victoria Wang 2014-11-03 18:07:33 -06:00
parent 20a0e6096e
commit d821ec9dca
2 changed files with 9 additions and 6 deletions

View file

@ -1369,7 +1369,7 @@ a.tag:hover {
.row.editor {
float: left;
width: 100%;
overflow: scroll;
overflow: auto;
position: absolute;
top: 105px;
bottom: 0;

View file

@ -1,10 +1,13 @@
<style>
html {
overflow-y: hidden;
}
#editor {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.theme-Code{
float:right;