TelegramPWA/src/components/story/MediaStory.module.scss
2023-08-14 11:32:26 +02:00

32 lines
493 B
SCSS

.root {
position: relative;
}
.wrapper {
// Aspect-ratio trick https://css-tricks.com/aspect-ratio-boxes/
height: 0;
padding-bottom: 179%;
overflow: hidden;
cursor: var(--custom-cursor, pointer);
}
.media {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.expiredIcon {
font-size: 1.25rem;
line-height: 0.9375rem;
vertical-align: -0.1875rem;
}
.contextMenu {
position: relative;
z-index: var(--z-right-column-menu);
}