PeerTube/client/src/sass/player/mobile.scss

17 lines
323 B
SCSS
Raw Normal View History

2018-06-11 15:25:46 +02:00
@import '_variables';
@import '_mixins';
/* Special mobile style */
.video-js.vjs-peertube-skin.vjs-is-mobile {
.vjs-control-bar {
.vjs-progress-control .vjs-slider .vjs-play-progress {
// Always display the circle on mobile
&::before {
margin-top: -1px;
opacity: 1;
}
}
}
2021-04-28 16:41:07 +02:00
}