aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/portrait.scss
blob: ebe28ce375a3ec6e9c8cb9f794e84c202320e539 (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
29
30
@media (orientation: portrait) {

    html {
        background-image: url('../images/vertical_background.png');
    }

    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;
            }
        }

    }
}