Sha256: 7e77175bdb6c581cf7dd9c760d5ae7a4a6c7d4e626e18f95b0be8ae936ae0e59
Contents?: true
Size: 720 Bytes
Versions: 6
Compression:
Stored size: 720 Bytes
Contents
//Selectors %text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; display: inline-block; //ensures element has block properties } //Clears the float from any element %clearfix { &:before, &:after { display: table; content: ""; } &:after { clear: both; } } // Centers a block %center-block { display: block; margin-left: auto; margin-right: auto; } // Aligns the content vertically speaking %vertical-alignment { position: relative; top: 50%; @include transform(translateY(-50%)); margin: 0; } // Wrap words %word-wrap { -ms-word-break: break-all; word-break: break-all; word-break: break-word; @include hyphens; }
Version data entries
6 entries across 6 versions & 1 rubygems