641e7676ac
image cover multiple menu layouts ref #601,#602
19 lines
315 B
SCSS
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;
|
|
}
|
|
} |