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

Version Path
susy-2.0.0.beta.3 sass/susy/output/shared/_box-sizing.scss
susy-2.0.0.beta.2 sass/susy/output/shared/_box-sizing.scss
susy-2.0.0.beta.1 sass/susy/api/shared/_box-sizing.scss
susy-2.0.0.alpha.6 sass/susy/helpers/_box-sizing.scss
susy-2.0.0.alpha.5 sass/susy/helpers/_box-sizing.scss