aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass/components/times.scss
blob: db41275d266c8ecbbc018002e319a89a527c8a89 (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: calc(#{$plyr-bp-md} - 1)) {
    display: none;
  }
}