aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass/components/times.scss
blob: 7d7a50f1b66c16739313a969f2fd43b52635fdb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// --------------------------------------------------------------
// Time
// --------------------------------------------------------------

.plyr__time {
    font-size: $plyr-font-size-time;
}

// Media duration hidden on small screens
.plyr__time + .plyr__time {
    // Add a slash in before
    &::before {
        content: '\2044';
        margin-right: $plyr-control-spacing;
    }

    @media (max-width: $plyr-bp-sm-max) {
        display: none;
    }
}