Sha256: 701679813cb4eb2a693dff973632a5e92caa7c7cd003d80e2d6bfe3c86f2b321

Contents?: true

Size: 420 Bytes

Versions: 84

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

Version data entries

84 entries across 80 versions & 11 rubygems

Version Path
compass-0.10.2 frameworks/compass/stylesheets/compass/utilities/general/_min.scss
compass-0.10.1 frameworks/compass/stylesheets/compass/utilities/general/_min.scss
compass-0.10.0 frameworks/compass/stylesheets/compass/utilities/general/_min.scss
compass-0.10.0.rc6 frameworks/compass/stylesheets/compass/utilities/general/_min.scss