Sha256: 5e3f8d97c2a2db0aef8bc80dd455eb290035abbddd224e15767ef239dc1fc09e

Contents?: true

Size: 881 Bytes

Versions: 4

Compression:

Stored size: 881 Bytes

Contents

@import "sass-zero/variables/border";
@import "sass-zero/variables/effects";
@import "sass-zero/variables/spacing";
@import "sass-zero/variables/zindex";

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

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

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

@mixin outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@mixin appearance-none {
  -webkit-appearance: none;
  appearance: none;
}

@mixin progress-bar {
  ::-webkit-progress-value {
    @content;
  }

  ::-moz-progress-bar {
    @content;
  }
}

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sass-zero-1.0.13 app/assets/stylesheets/sass-zero/mixins.scss
sass-zero-1.0.12 app/assets/stylesheets/sass-zero/mixins.scss
sass-zero-1.0.11 app/assets/stylesheets/sass-zero/mixins.scss
sass-zero-1.0.10 app/assets/stylesheets/sass-zero/mixins.scss