diff --git a/src/app.css b/src/app.css
index af6737b..4d4e8ae 100644
--- a/src/app.css
+++ b/src/app.css
@@ -24,2 +24,2 @@ body {
-.buttons {
- /* position: absolute;
+#buttons {
+ position: absolute;
@@ -27 +27 @@ body {
- left: 0; */
+ left: 0;
@@ -30,2 +30 @@ body {
- height: 50%;
- /* height: 128px; */
+ height: 128px;
@@ -33 +31,0 @@ body {
- margin-left: 20px;
@@ -39,2 +37 @@ body {
- height: 100%;
- /* height: 128px; */
+ height: 128px;
@@ -43,13 +40,2 @@ body {
- align-content: center;
-}
-
-.between {
- justify-content: center;
-}
-
-.around {
- justify-content: space-around;
-}
-
-.even {
- justify-content: space-evenly;
+ justify-content: flex-start;
+ align-content: space-around;
html {
margin: 0;
padding: 0;
}
body {
width: 100%;
height: 100%;
background: white;
margin: 0;
padding: 0;
}
#editor {
position: absolute;
top: 0;
right: 0;
width: 50%;
max-width: 700px;
height: 100%;
background: #212121;
}
.buttons {
/* position: absolute;
bottom: 0;
left: 0; */
width: calc(100% - 700px);
min-width: 50%;
height: 50%;
/* height: 128px; */
background-color: gray;
margin-left: 20px;
}
.row {
display: flex;
flex-direction: row;
height: 100%;
/* height: 128px; */
background: red;
flex-wrap: wrap;
align-content: center;
}
.between {
justify-content: center;
}
.around {
justify-content: space-around;
}
.even {
justify-content: space-evenly;
}
.button {
width: 147px;
height: 50px;
background: #212121;
border: 2px solid black;
}