17 lines
310 B
SCSS
17 lines
310 B
SCSS
|
|
@mixin figure-16-9{
|
|
& > figure{
|
|
aspect-ratio: 16/9;
|
|
display: flex;
|
|
overflow: hidden;
|
|
img, picture{
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|