Sha256: 81c88b63a0acb5cb491aa0e47a1b4995be3f8cc38ac052db7499c67f3ecb8405
Contents?: true
Size: 461 Bytes
Versions: 5
Compression:
Stored size: 461 Bytes
Contents
// Box Sizing // ========== // Susy is not in the business of handling css3 prefixed feature support. // If you provide a mixin, we'll use yours, otherwise we provide basics. // If you want more powerful support handling, we recommend compass-style.org // Susy Box Sizing // --------------- // [$model]: content-box | border-box @mixin susy-box-sizing( $model: content-box ) { -moz-box-sizing: $model; -webkit-box-sizing: $model; box-sizing: $model; }
Version data entries
5 entries across 5 versions & 1 rubygems