| Path : /proc/self/root/var/www/html/smartcirqls.com/vendors/cropper/src/scss/ |
| Current File : //proc/self/root/var/www/html/smartcirqls.com/vendors/cropper/src/scss/_mixins.scss |
// Mixins
// =========================
// Opacity
// -------------------------
@mixin opacity($opacity) {
opacity: $opacity;
filter: alpha(opacity=#{$opacity * 100}); // IE8
}
// Sizing shortcuts
// -------------------------
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}