Source on Github

Minimum Dimensions

Cross browser implementation of min-height and min-width.

This file can be imported using: @import "compass/utilities/general/min"

Imports

  1. Hacks – Mixins for hacking specific browsers.

Mixins

view source

=min-height($value)
  +hacked-minimum(height, $value)
@mixin min-height($value) {
  @include hacked-minimum(height, $value);
}

Cross browser min-height mixin.

view source

=min-width($value)
  +hacked-minimum(width, $value)
@mixin min-width($value) {
  @include hacked-minimum(width, $value);
}

Cross browser min-width mixin.