aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2018-01-28 14:01:06 +0000
committerJames Barnett <noreply@jamesbarnett.xyz>2018-01-28 14:01:06 +0000
commit447f821d3ca49cc96da59858dbf8d73d895e7060 (patch)
tree7649085f6232462f9622e1cb0fddb9935c63bf61 /index.html
parent8e831bf7f734b47fe084ee9851ab4772cbb20d2d (diff)
downloadsql-plus-plus-447f821d3ca49cc96da59858dbf8d73d895e7060.tar.xz
sql-plus-plus-447f821d3ca49cc96da59858dbf8d73d895e7060.zip
Add flexbox layout with draggable resizing
Diffstat (limited to 'index.html')
-rw-r--r--index.html21
1 files changed, 15 insertions, 6 deletions
diff --git a/index.html b/index.html
index cc12618..eac7bc9 100644
--- a/index.html
+++ b/index.html
@@ -9,15 +9,24 @@
<link rel="stylesheet" type="text/css" href="./table-style.css"></link>
</head>
<body>
-
- <input id="run-query" type="button" value="Run"></input>
+ <div class="flex-wrapper">
+ <div class="row header">
+ <input id="run-query" type="button" value="Run"></input>
+ </div>
+
- <div id="editor"></div>
+ <div class="row content">
+ <div id="editor" class="editor-row split-row"></div>
+
+ <div class="results-row split-row">
+ <table id="result-table" width="100%"></table>
+ </div>
+ </div>
- <div class="results">
- <table id="result-table" width="100%"></table>
+ <div class="row footer">
+ some status
+ </div>
</div>
-
<script>
require("./renderer.js");
</script>