aboutsummaryrefslogtreecommitdiffstats
path: root/src/scss/playlist/_mediaqueries.scss
blob: 68b1063d3271a4ad90746f1416d234859d628639 (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
53
54
55
56
57
// Single Playlist
@media (min-width: 1920px) and  (min-height: 900px) {
    // Single playlist
    .single-play-menu {
        height: 380px; //enabled scroll
        overflow-y: auto;
    }
}

@media screen and (max-width: 1280px) {
    // Single playlist
    .single-play-menu {
        height: 320px; //enabled scroll
        overflow-y: auto;
    }
}

@media screen and (max-width: 980px) {
    // Single playlist
    .single-play-menu {
        height: 250px; //enabled scroll
        overflow-y: auto;
    }
}

@media screen and (max-width: 800px) {
    // Single playlist
    .single-play-menu {
        height: 190px; //enabled scroll
        overflow-y: auto;
    }
}

@media screen and (max-width: 768px) {
    // Single playlist
    .single-play-menu {
        height: 350px; //enabled scroll
        overflow-y: auto;
    }
}

@media screen and (max-width: 360px) {
    // Single playlist
    .single-play-menu {
        height: 150px; //enabled scroll
        overflow-y: auto;
    }
}

@media screen and (max-width: 320px) {
    // Single playlist
    .single-play-menu {
        height: 120px; //enabled scroll
        overflow-y: auto;
    }
}
// /Single PlayList