Sha256: 6ba35e603f0a022dc66d93a725cc1cadd2e39bb6df4cec880ea3ebce436ecef7

Contents?: true

Size: 585 Bytes

Versions: 3

Compression:

Stored size: 585 Bytes

Contents

@mixin ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@mixin antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@mixin subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

@mixin clearfix {
  &::after {
    display: block;
    clear: both;
    content: "";
  }
}

@mixin make-container($padding-x, $max-width) {
  width: 100%;
  padding-right: $padding-x;
  padding-left: $padding-x;
  margin-right: $size-auto;
  margin-left:  $size-auto;
  max-width: $max-width;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sass-zero-0.0.35 app/assets/stylesheets/sass-zero/mixins.scss
sass-zero-0.0.34 app/assets/stylesheets/sass-zero/mixins.scss
sass-zero-0.0.33 app/assets/stylesheets/sass-zero/mixins.scss