summaryrefslogtreecommitdiff
path: root/client/src/App.css
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2021-06-24 23:11:39 +0200
committerMike Vink <mike1994vink@gmail.com>2021-06-24 23:11:39 +0200
commit976ed2b105e80b257ebb724b3061400f37460041 (patch)
treebd04ac5d0a7978d6d8a4a5e2d862bf574314f2f8 /client/src/App.css
parent3906fcf3d702f13da79c797c91a2dd32d874af49 (diff)
mega commit
Diffstat (limited to 'client/src/App.css')
-rw-r--r--client/src/App.css23
1 files changed, 21 insertions, 2 deletions
diff --git a/client/src/App.css b/client/src/App.css
index 8eebe3a..1d59297 100644
--- a/client/src/App.css
+++ b/client/src/App.css
@@ -1,9 +1,28 @@
+html {
+ height: 100%;
+}
+
body {
margin: 0px;
padding: 0px;
background-color: #eeeeee;
+ height: 100%;
+}
+
+#root {
+ height: 100%;
+ --board-color: rgb(222,184,135);
+ --recess-color: rgb(188,143,143);
}
.main-content {
- padding: 8px;
-} \ No newline at end of file
+ display: flex;
+
+ justify-content: center;
+ align-items: center;
+ align-self: center;
+
+ flex: 0 1 auto;
+
+ height: calc(100% - (107px))
+}