From f382ec567e1292cedee7c01e721ddc38bdc4dc4e Mon Sep 17 00:00:00 2001 From: "SOGYO\\bvdoord" Date: Tue, 26 Jan 2021 11:22:58 +0100 Subject: Front-end met Snowpack toegevoegd --- client/src/App.css | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 client/src/App.css (limited to 'client/src/App.css') diff --git a/client/src/App.css b/client/src/App.css new file mode 100644 index 0000000..8eebe3a --- /dev/null +++ b/client/src/App.css @@ -0,0 +1,9 @@ +body { + margin: 0px; + padding: 0px; + background-color: #eeeeee; +} + +.main-content { + padding: 8px; +} \ No newline at end of file -- cgit v1.2.3 From 976ed2b105e80b257ebb724b3061400f37460041 Mon Sep 17 00:00:00 2001 From: Mike Vink Date: Thu, 24 Jun 2021 23:11:39 +0200 Subject: mega commit --- client/src/App.css | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'client/src/App.css') 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)) +} -- cgit v1.2.3