Sha256: dc5b15b63d145eb1b97fd72bafe8023658933727d7696efcb0bb183d0fbe45d7
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 KB
Contents
// ************************************************ // Float // ************************************************ @mixin clearfix { &::after { display: block; clear: both; content: ""; } } // ************************************************ // 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-x, $max-width) { width: 100%; padding-right: $padding-x; padding-left: $padding-x; margin-right: auto; margin-left: auto; max-width: $max-width; }
Version data entries
4 entries across 4 versions & 1 rubygems