https://github.com/sha-red/compass-mixins/tree/master/lib extended with more sass frameworks and as django app.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
420 B

@import "hacks";
//**
// Cross browser min-height mixin.
@mixin min-height($value) {
@include hacked-minimum(height, $value); }
//**
// Cross browser min-width mixin.
@mixin min-width($value) {
@include hacked-minimum(width, $value); }
// @private This mixin is not meant to be used directly.
@mixin hacked-minimum($property, $value) {
min-#{$property}: $value;
@include bang-hack($property, auto, $value); }