show play button when video is paused

This commit is contained in:
Sean Yesmunt 2019-12-12 16:25:31 -05:00
parent 5d3077ff9f
commit 6e09dbfb96

View file

@ -104,3 +104,28 @@
pointer-events: none;
}
}
.vjs-paused .vjs-big-play-button,
.vjs-paused.vjs-has-started .vjs-big-play-button {
display: block;
}
.file-render {
.video-js {
display: flex;
align-items: center;
justify-content: center;
.vjs-big-play-button {
@extend .button--icon;
@extend .button--play;
border: none;
position: static;
z-index: 2;
.vjs-icon-placeholder {
display: none;
}
}
}
}