25 lines
507 B
SCSS
25 lines
507 B
SCSS
.filmstrip__videos .videocontainer {
|
|
display: inline-block;
|
|
position: relative;
|
|
background-size: contain;
|
|
border: $thumbnailVideoBorder solid transparent;
|
|
border-radius: $borderRadius;
|
|
margin: 0 $thumbnailVideoMargin;
|
|
|
|
&:hover {
|
|
cursor: hand;
|
|
}
|
|
|
|
& > video {
|
|
cursor: hand;
|
|
border-radius: $borderRadius;
|
|
object-fit: cover;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.presence-label {
|
|
position: absolute;
|
|
z-index: $zindex3;
|
|
}
|
|
}
|