Files
SCSS-Framework/mixins/layout/image/_cover.scss
T
simongehrig 641e7676ac Added
image cover
multiple menu layouts
ref #601,#602
2017-03-29 12:19:37 +02:00

19 lines
315 B
SCSS

@mixin image-cover($heightaspect) {
/* image cover */
position: relative;
display: inline-block;
overflow: hidden;
img {
position: absolute;
object-fit: cover;
width: 100%;
height: 100%;
}
&:after {
content: "";
display: block;
padding-bottom: 100% * $heightaspect;
}
}