Sha256: 1c8d1f5d46af65a13bcfab49636f5779cfd7a4c68d8e3f3c458c23cb40461123
Contents?: true
Size: 1002 Bytes
Versions: 1
Compression:
Stored size: 1002 Bytes
Contents
// ======================================================================== // Component: row-extra.less // ======================================================================== // Different container size to wrap content .container-sm { max-width: $container-sm; width: auto; } .container-md { max-width: $container-md; width: auto; } .container-lg { max-width: $container-lg; width: auto; } // // Utilities to manage bootstrap rows and cols // with more flexibility // Use in conjunction with .row // --------------------------------------------- // Display a row using table layout // allows to have vertically aligned elements .row-table { display: table; table-layout: fixed; height: 100%; width: 100%; margin: 0; > [class*="col-"] { display: table-cell; float: none; table-layout: fixed; vertical-align: middle; } } // Remove padding and collapse columns .row-flush { > [class*="col-"] { padding-left: 0; padding-right: 0; } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
radius-rails-3.1.4 | app/assets/stylesheets/radius-theme/app/row-extra.scss |