Update static/style.css
Browse files- static/style.css +8 -2
static/style.css
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
|
|
| 1 |
body {
|
|
|
|
| 2 |
margin: 0;
|
| 3 |
padding: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
display: flex;
|
| 5 |
flex-direction: column;
|
| 6 |
-
height: 100vh;
|
| 7 |
}
|
| 8 |
|
| 9 |
#canvas-container {
|
| 10 |
position: relative;
|
| 11 |
flex-grow: 1;
|
|
|
|
| 12 |
}
|
| 13 |
|
| 14 |
#background-canvas,
|
|
@@ -28,4 +34,4 @@ body {
|
|
| 28 |
|
| 29 |
#toolbar > * {
|
| 30 |
margin: 0 10px;
|
| 31 |
-
}
|
|
|
|
| 1 |
+
html,
|
| 2 |
body {
|
| 3 |
+
height: 100%;
|
| 4 |
margin: 0;
|
| 5 |
padding: 0;
|
| 6 |
+
overflow: hidden;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
body {
|
| 10 |
display: flex;
|
| 11 |
flex-direction: column;
|
|
|
|
| 12 |
}
|
| 13 |
|
| 14 |
#canvas-container {
|
| 15 |
position: relative;
|
| 16 |
flex-grow: 1;
|
| 17 |
+
overflow: hidden;
|
| 18 |
}
|
| 19 |
|
| 20 |
#background-canvas,
|
|
|
|
| 34 |
|
| 35 |
#toolbar > * {
|
| 36 |
margin: 0 10px;
|
| 37 |
+
}
|