summaryrefslogtreecommitdiffstats
path: root/webapp/sass/responsive/_tablet.scss
blob: db2a8d7b98695ae567b1d6ec34d5066cdd09b65b (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@charset 'UTF-8';

@media screen and (max-width: 960px) {
    .sidebar--right {
        @include single-transition(all, .5s, ease);
        @include translateX(100%);
        z-index: 5;

        &.move--left {
            @include translateX(0);

            .search-bar__container {
                padding-right: 8px;
            }
        }
    }

    .backstage-content {
        margin: 30px;
        max-width: 100%;
        padding: 0;
    }

    .backstage-sidebar {
        height: auto;
        padding: 30px 15px 0;
        position: relative;
        width: 100%;
    }

    .help__format-text {
        display: none;
    }

    .inner-wrap {
        &.move--left {
            margin-right: 0;

            .channel-header__links {
                position: relative;
                right: auto;
                top: auto;
            }
        }
    }
}

@media screen and (min-width: 768px) {
    .second-bar {
        display: none;
    }
}