aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass/components/times.scss
blob: 5f1cb995df9032750c099ce10b1fb096822a66a6 (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-md - 1px)) {
    display: none;
  }
}