Sha256: 2b5b3cc7ad8f8404218c61013f99828b3a04012c3713415b69d226c21a9e1582

Contents?: true

Size: 420 Bytes

Versions: 4

Compression:

Stored size: 420 Bytes

Contents

@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, $value, auto); }

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
compass-0.10.0.rc5 frameworks/compass/stylesheets/compass/utilities/general/_min.scss
compass-0.10.0.rc4 frameworks/compass/stylesheets/compass/utilities/general/_min.scss
compass-0.10.0.rc3 frameworks/compass/stylesheets/compass/utilities/general/_min.scss
compass-0.10.0.rc2 frameworks/compass/stylesheets/compass/utilities/general/_min.scss