aboutsummaryrefslogtreecommitdiff
path: root/src/web/components/app/App.css
blob: e21197435a61c3ab070698ab8763716ff8f34c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

.content {
    /* sticky footer */
    flex-grow: 1;
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: left;

    padding: 0;
    background-color: var(--black-10);
}

@media (min-width: 40em) {
    .content {
        padding: 0em 0em 0em var(--menu-width);
    }
}