Sha256: 708494b6686f45a906ceecefac72c8518151fdc94ac16377aa1e9d7b9a37bb4a
Contents?: true
Size: 849 Bytes
Versions: 5
Compression:
Stored size: 849 Bytes
Contents
@import "./variables/border"; @import "./variables/effects"; @import "./variables/spacing"; @import "./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
5 entries across 5 versions & 1 rubygems