Files
SCSS-Framework/examples/layout/image/fit/fit.scss
T
simongehrig 426dde5b61 Added
image fit

Enhanced
image cover
added aspect control
2017-04-05 09:24:14 +02:00

24 lines
389 B
SCSS

@import "../../../../framework";
.content {
.img-square {
@include cols(4,0);
margin: 0 -4px 0 0 !important;
border: solid thin black !important;
@include image-fit(0.75);
}
.img-round {
@include cols(4,0);
margin-right: -4px !important;
border: solid thin black !important;
@include image-fit(1);
img {
border-radius: 50%;
}
}
}