domsPlace/public/styles/components/_video-section.scss
2018-05-07 08:25:41 +10:00

23 lines
342 B
SCSS

/*
* Video Section
* Styles for Video Sections, usually contains videos.
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/05/03
*/
.c-video-section {
position: relative;
&__video {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
object-fit: cover;
object-position: center;
}
}