Sha256: abcbe26279d5a42c486e16f119084799951e58fc8e654e15c761fa4f7bdf9770
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 KB
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 focus { border-color: $breadboard-color; box-shadow: $shadow-outline; outline: 0; } @mixin selection { appearance: none; border-width: $border; color: $breadboard-primary; margin-bottom: -0.2rem; height: $size-4; width: $size-4; } @mixin checked { border-color: transparent; background-color: currentColor; background-position: center; background-repeat: no-repeat; } @mixin space-x($space, $reverse: false) { & > :not(template) ~ :not(template) { @if $reverse { margin-right: $space; } @else { margin-left: $space; } } } @mixin space-y($space, $reverse: false) { & > :not(template) ~ :not(template) { @if $reverse { margin-bottom: $space; } @else { margin-top: $space; } } } @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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sass-zero-0.0.37 | app/assets/stylesheets/sass-zero/mixins.scss |
sass-zero-0.0.36 | app/assets/stylesheets/sass-zero/mixins.scss |