From 27ab1f7b6ad9066b47807f7bd0381187874609bb Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 6 Jun 2020 15:01:53 -0600 Subject: [PATCH] Add "run" button --- frontend/pages/app.html | 15 +++++++++++++-- frontend/styles/app.css | 14 ++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/frontend/pages/app.html b/frontend/pages/app.html index 70890e7..0ea4b89 100644 --- a/frontend/pages/app.html +++ b/frontend/pages/app.html @@ -3,11 +3,22 @@ Fast Sandbox + -
-
+ +
+
+
+
diff --git a/frontend/styles/app.css b/frontend/styles/app.css index ac4e3d7..ea93b76 100644 --- a/frontend/styles/app.css +++ b/frontend/styles/app.css @@ -3,6 +3,20 @@ body { height: 100vh; } +#header { + height: 50px; + padding: 5px; +} + +#runButton { + position: absolute; + left: 50%; +} + +#app { + height: calc(100% - 50px); +} + .column { width: 50%; height: 100%;