Skip to content

Commit

Permalink
Fix run button
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan687 committed Jul 30, 2017
1 parent 030de96 commit d9f4643
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions assets/css/result.css
Expand Up @@ -2,7 +2,7 @@
background: #f7f7f7;
padding-bottom: 30px; }
.query-result-container.layoutApplied .queryRight {
padding: 15px 15px 15px 0;
padding: 32px 15px 15px 0;
background: #f7f7f7;
border-left: 1px solid #dedede;
height: 100%;
Expand All @@ -16,12 +16,13 @@
.query-result-container.layoutApplied .queryRight .rightRow.url-row {
top: 0; }
.query-result-container.layoutApplied .queryRight .rightRow.run-row {
bottom: 0;
bottom: -25px;
padding-bottom: 0; }
.query-result-container.layoutApplied .queryRight .codeMirror-container {
height: 100%;
position: relative;
padding: 25px 0 40px 0; }
padding: 0;
overflow: auto; }
.query-result-container.layoutApplied .queryRight .codeMirror-container .CodeMirror {
height: 100%; }
@media screen and (max-width: 768px) {
Expand Down
7 changes: 4 additions & 3 deletions assets/styles/result.scss
Expand Up @@ -3,7 +3,7 @@
background: $grey-bg;
padding-bottom: 30px;
.queryRight {
padding: 15px 15px 15px 0;
padding: 32px 15px 15px 0;
background: $grey-bg;
border-left: 1px solid darken($grey-bg, 10%);
height: 100%;
Expand All @@ -18,14 +18,15 @@
top: 0;
}
&.run-row {
bottom: 0;
bottom: -25px;
padding-bottom: 0;
}
}
.codeMirror-container {
height: 100%;
position: relative;
padding: 25px 0 40px 0;
padding: 0;
overflow: auto;
.CodeMirror {
height: 100%;
}
Expand Down

0 comments on commit d9f4643

Please sign in to comment.