summaryrefslogtreecommitdiff
path: root/client/src/App.css
blob: 1d592976d571916f7fc6ed59657cd5a44066f0d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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))
}