Files
_hublib-web/dist/react/video-player/components/with-duration-badge/with-duration-badge.module.scss
2026-02-27 09:50:13 +03:00

23 lines
468 B
SCSS

.videoMain {
width: 100%;
height: 100%;
position: relative;
}
.videoDurationOverlay {
position: absolute;
bottom: 12px;
right: 12px;
background: var(--Opacity-BlackOpacity45, rgba(0, 0, 0, 0.45));
color: var(--Default-White, #fff);
padding: 6px var(--corner-S, 8px);
border-radius: var(--Corner-XL, 32px);
font-size: 10px;
font-weight: 600;
line-height: 12px; /* 120% */
pointer-events: none;
transition: opacity 0.7s ease;
opacity: 0;
z-index: 3;
}