diff --git a/src/components/App.tsx b/src/components/App.tsx
index b873b62e..e459738a 100644
--- a/src/components/App.tsx
+++ b/src/components/App.tsx
@@ -11,23 +11,20 @@ import Toolbar from './Toolbar';
function App(): JSX.Element {
return (
-
-
+
+
-
-
+
+
-
+
diff --git a/src/components/Editor.tsx b/src/components/Editor.tsx
index 65cbb87d..64980d69 100644
--- a/src/components/Editor.tsx
+++ b/src/components/Editor.tsx
@@ -21,6 +21,7 @@ class Editor extends React.Component {
theme="xcode"
fontSize="16pt"
width="100"
+ height="100%"
focus={true}
placeholder="Write your program here..."
defaultValue={localStorage.getItem('program') || undefined}
diff --git a/src/index.scss b/src/index.scss
index b2bbd198..5162395d 100644
--- a/src/index.scss
+++ b/src/index.scss
@@ -6,3 +6,7 @@ $body-bg: #0088ce;
// Import Bootstrap and its default variables
@import '~bootstrap/scss/bootstrap';
+
+.Terminal {
+ height: 15vh;
+}