aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass/components/volume.scss
blob: 8afd76b08125ecf7ca78a98c1f988529be92f8ea (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
// --------------------------------------------------------------
// Volume
// --------------------------------------------------------------

.plyr__volume {
    align-items: center;
    display: flex;
    position: relative;

    input[type='range'] {
        margin-left: ($plyr-control-spacing / 2);
        margin-right: ($plyr-control-spacing / 2);
        position: relative;
        z-index: 2;
    }

    @media (min-width: $plyr-bp-sm) {
        max-width: 90px;
    }

    @media (min-width: $plyr-bp-md) {
        max-width: 110px;
    }
}