_size.scss 339 B

12345678910111213141516
  1. @mixin size($size) {
  2. $height: nth($size, 1);
  3. $width: $height;
  4. @if length($size) > 1 {
  5. $height: nth($size, 2);
  6. }
  7. @if $height == auto or (type-of($height) == number and not unitless($height)) {
  8. height: $height;
  9. }
  10. @if $width == auto or (type-of($height) == number and not unitless($width)) {
  11. width: $width;
  12. }
  13. }