Sha256: a59770f3dd1ad9fd8dd6f2863b204f69562dc99f8e931451a547b4ed38326516

Contents?: true

Size: 873 Bytes

Versions: 2

Compression:

Stored size: 873 Bytes

Contents

@each $prefix in $breakpoints {
  @each $name, $property in $sizing-types {
    @include sizing-util('.max-#{$name}-#{$prefix}full') {
      max-#{$property}: 100%;
      -premailer-#{$property}: 100%;
      #{$property}: 100%;
    }
    @each $size, $value in $sizing {
      @include sizing-util('.max-#{$name}-#{$prefix}#{$size}') {
        max-#{$property}: $value;
        -premailer-#{$property}: strip-unit($value);
        #{$property}: 100%;
      }
    }
  }
}

@each $prefix in $breakpoints {
  @each $name, $property in $sizing-types {
    @include sizing-util('.#{$name}-#{$prefix}full') {
      -premailer-#{$property}: 100%;
      #{$property}: 100%;
    }
    @each $size, $value in $sizing {
      @include sizing-util('.#{$name}-#{$prefix}#{$size}') {
        -premailer-#{$property}: strip-unit($value);
        #{$property}: $value;
      }
    }
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bootstrap-email-1.0.0.alpha2.1 core/scss/utilities/_sizing.scss
bootstrap-email-1.0.0.alpha2 core/scss/utilities/_sizing.scss