Sha256: 22bf1882c1874e93e63ca236dab05b5d3b731667b543b3145c3d6bb7938f85f4

Contents?: true

Size: 1011 Bytes

Versions: 5

Compression:

Stored size: 1011 Bytes

Contents

@charset "UTF-8";

/// Sets the `width` and `height` of the element in one statement.
///
/// @argument {number (with unit) | string} $width
///
/// @argument {number (with unit) | string} $height [$width]
///
/// @example scss
///   .first-element {
///     @include size(2em);
///   }
///
///   // CSS Output
///   .first-element {
///     width: 2em;
///     height: 2em;
///   }
///
/// @example scss
///   .second-element {
///     @include size(auto, 10em);
///   }
///
///   // CSS Output
///   .second-element {
///     width: auto;
///     height: 10em;
///   }
///
/// @require {function} _is-size

@mixin size(
    $width,
    $height: $width
  ) {

  @if _is-size($height) {
    height: $height;
  } @else {
    @error "`#{$height}` is not a valid length for the `$height` argument " +
           "in the `size` mixin.";
  }

  @if _is-size($width) {
    width: $width;
  } @else {
    @error "`#{$width}` is not a valid length for the `$width` argument " +
           "in the `size` mixin.";
  }
}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
spice-rack-0.4.0 _sass/bourbon/bourbon/library/_size.scss
spice-rack-0.3.0 _sass/bourbon/bourbon/library/_size.scss
spice-rack-0.2.0 _sass/bourbon/bourbon/library/_size.scss
spice-rack-0.1.0 _sass/bourbon/bourbon/library/_size.scss
bourbon-5.0.0.beta.7 core/bourbon/library/_size.scss