summaryrefslogtreecommitdiffstats
path: root/src/styles/portrait.scss
blob: 14976d009fd218476b360b92744800d6a86f2118 (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
@media (orientation: portrait) {

    body {
        .top{
            width: 100%;
            height: $header_size;
            flex-direction: row;

            .button {
                border-width: 0 1px 0 1px;
            }

            .infoContainer {
                border-width: 0 1px 0 1px;
                width: 200px;
            }

            .statusContainer {
                width: 60px;
                height: 100%;
                flex-direction: column;
            }
        }

    }
}