18 lines
245 B
SCSS
18 lines
245 B
SCSS
|
|
@supports not (aspect-ratio: auto) {
|
||
|
|
.ct-media-container {
|
||
|
|
img,
|
||
|
|
video,
|
||
|
|
iframe {
|
||
|
|
position: absolute;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:before {
|
||
|
|
display: block;
|
||
|
|
content: '';
|
||
|
|
width: 100%;
|
||
|
|
padding-bottom: 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|