From b31e49d40de841ea5f71263b9c475982843a4a81 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sun, 7 Jun 2020 16:04:32 -0600 Subject: [PATCH] Finish improving layout --- frontend/styles/app.css | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/frontend/styles/app.css b/frontend/styles/app.css index 02430c2..5b320be 100644 --- a/frontend/styles/app.css +++ b/frontend/styles/app.css @@ -3,12 +3,6 @@ body { height: 100vh; } -#runButton { - position: absolute; - top: 25px; - right: calc(50% + 25px); -} - #app { height: 100%; } @@ -18,3 +12,17 @@ body { height: 100%; float: left; } + +#editor { + overflow: hidden; +} + +#terminal { + background: black; +} + +#runButton { + position: absolute; + top: 25px; + right: calc(50% + 25px); +}