Sha256: a2fa95b0e3be48e286efd7b128006c965509fa10280939bd70e027a9fcddcbbb

Contents?: true

Size: 393 Bytes

Versions: 3

Compression:

Stored size: 393 Bytes

Contents

// Shared Container API
// ====================

// Container Output
// ----------------
// - [$width]         : <length>
// - [$justify]       : left | center | right
// - [$math]          : fluid | static
@mixin container-output(
  $width,
  $justify: auto auto,
  $property: max-width
) {
  #{$property}: $width or 100%;
  margin-left: nth($justify, 1);
  margin-right: nth($justify, 2);
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
susy-2.0.0.beta.3 sass/susy/output/shared/_container.scss
susy-2.0.0.beta.2 sass/susy/output/shared/_container.scss
susy-2.0.0.beta.1 sass/susy/api/shared/_container.scss