37 lines
519 B
SCSS

.Media {
cursor: var(--custom-cursor, pointer);
position: relative;
overflow: hidden;
height: 0;
padding-bottom: 100%;
.video-duration {
position: absolute;
top: 0.25rem;
left: 0.25rem;
padding: 0 0.3125rem;
border-radius: 0.1875rem;
font-size: 0.75rem;
line-height: 1.125rem;
color: #fff;
background: rgba(0, 0, 0, 0.25);
}
.media-miniature {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
}