Sha256: 79523cea4b1f0678202f4fd80f86dc404212ddb604e53ee853df574b82e18ed9

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

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 clearfix {
  &::after {
    display: block;
    clear: both;
    content: "";
  }
}

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

@mixin input-selection($color) {
  appearance: none;
  border-width: $border;
  color: $color;
  margin-bottom: -0.1rem;
  height: $size-4;
  width: $size-4;
}

@mixin checked {
  border-color: transparent;
  background-color: currentColor;
  background-position: center;
  background-repeat: no-repeat;
}

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

@mixin outline-white {
  outline: 2px dotted white;
  outline-offset: 2px;
}

@mixin outline-black {
  outline: 2px dotted black;
  outline-offset: 2px;
}

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sass-zero-0.0.49 app/assets/stylesheets/sass-zero/mixins.scss
sass-zero-0.0.48 app/assets/stylesheets/sass-zero/mixins.scss
sass-zero-0.0.47 app/assets/stylesheets/sass-zero/mixins.scss