Sha256: 33bf85ab28ba18bffe0ddd9018e47ca7ead576ba64c355d7f4e89164dfc807da

Contents?: true

Size: 674 Bytes

Versions: 2

Compression:

Stored size: 674 Bytes

Contents

/*------------------------------------*\
    #CONTENT-WRAPPER
\*------------------------------------*/

/**
 * Wraps a portion of a page's content to center the content at a given width.
 * This is useful for full-bleed sites where some internal content should be
 * full width unless the viewport is very wide.
 */

$content-wrapper-padding:  0 ($spacing-unit * 2) !default;
$content-wrapper-padding-medium:  0 $spacing-unit !default;

.content-wrapper,
%content-wrapper {
    margin:  0 auto;
    padding: $content-wrapper-padding;
    max-width: $x-wide-breakpoint;

    @include respond-to($medium-breakpoint) {
        padding: $content-wrapper-padding-medium;
    }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workarea-one_theme-1.3.1 app/assets/stylesheets/workarea/storefront/objects/_content_wrapper.scss
workarea-one_theme-1.3.0 app/assets/stylesheets/workarea/storefront/objects/_content_wrapper.scss