bigbuffet-rw/app/styles/components/still-image.scss
Bárbara de Castro Fernandes 2da584b5ee Create StillImage component
2020-06-15 16:43:24 -03:00

28 lines
386 B
SCSS

.still-image {
position: relative;
overflow: hidden;
img,
canvas {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
font-family: inherit;
}
&--play-on-hover {
img {
position: absolute;
visibility: hidden;
}
&:hover img {
visibility: visible;
}
&:hover canvas {
visibility: hidden;
}
}
}