index-main/assets/css/components/_figures.scss
Julie Blanc bee25e5922
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
pinned investigation
2026-01-23 14:21:26 +01:00

35 lines
No EOL
662 B
SCSS

@mixin figure-16-9{
figure{
aspect-ratio: 16/9;
display: flex;
overflow: hidden;
img{
width: 100%;
height: 100%;
object-fit: cover;
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
}
}
@mixin figure-16-9-hover{
figure{
aspect-ratio: 16/9;
display: flex;
overflow: hidden;
img{
width: 100%;
height: 100%;
object-fit: cover;
transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
}
&:hover{
figure img{ transform: scale(1.05); }
}
}