summaryrefslogtreecommitdiff
path: root/frontend/common
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-06-03 23:27:50 +0200
committerJules Laplace <julescarbon@gmail.com>2020-06-03 23:27:50 +0200
commitbe577a90cd244a3f81537a1d9f370dd18838cddb (patch)
tree4219cc89ba8737eecf782b3e5c0a3c1be2483591 /frontend/common
parentc2085dd105b8dd4db41dbf6fb8d6e2d03f61edd2 (diff)
fixing layout
Diffstat (limited to 'frontend/common')
-rw-r--r--frontend/common/app.css11
1 files changed, 9 insertions, 2 deletions
diff --git a/frontend/common/app.css b/frontend/common/app.css
index 0e4f74d..f7a459c 100644
--- a/frontend/common/app.css
+++ b/frontend/common/app.css
@@ -8,7 +8,7 @@ html, body {
body {
background: #000;
color: #ddd;
- overflow-y: scroll;
+ overflow: hidden;
font-family: 'Roboto', sans-serif;
font-size: 0.875rem;
height: 100%;
@@ -24,7 +24,11 @@ body {
height: 100%;
width: 100%;
}
-.app,
+.app {
+ /*display: flex;*/
+ height: 100%;
+ width: 100%;
+}
.app > div {
display: flex;
flex-direction: column;
@@ -33,8 +37,11 @@ body {
}
.app .body {
display: flex;
+ flex-direction: column;
flex-grow: 1;
position: relative;
+ height: 100%;
+ width: 100%;
}
.row {