diff options
Diffstat (limited to 'client/src/App.css')
| -rw-r--r-- | client/src/App.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/client/src/App.css b/client/src/App.css new file mode 100644 index 0000000..1d59297 --- /dev/null +++ b/client/src/App.css @@ -0,0 +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 { + display: flex; + + justify-content: center; + align-items: center; + align-self: center; + + flex: 0 1 auto; + + height: calc(100% - (107px)) +} |
