Sha256: 5328fb1313ad8a8f7ec2ca6a215abe67497ec69ac69b54d1b2cb7ba89f1c1f6d
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
// ************************************************ // Float // ************************************************ @mixin clearfix { &:after { content: ""; display: table; clear: both; } } // ************************************************ // Word Break // ************************************************ @mixin break-normal { word-break: normal; overflow-wrap: normal } @mixin truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } // ************************************************ // Font Smoothing // ************************************************ @mixin antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } @mixin subpixel-antialiased { -webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto; } // ************************************************ // Container // ************************************************ @mixin make-container($padding, $max-width) { width: 100%; padding-right: $padding; padding-left: $padding; margin-right: auto; margin-left: auto; max-width: $max-width; }
Version data entries
5 entries across 5 versions & 1 rubygems