Sha256: 3fd979b20bde767128a5d9161a7bc3ce86740bebeb466509e4f60eb6c199e7c9

Contents?: true

Size: 342 Bytes

Versions: 4

Compression:

Stored size: 342 Bytes

Contents

/**
 * full-bleed-container
 *
 * Used to make content full bleed when it is wrapped by parent with a max-width
 * https://css-tricks.com/full-width-containers-limited-width-parents/
 */

@mixin full-bleed-container {
    position: relative;
    right: 50%;
    left: 50%;
    margin-right: -50vw;
    margin-left: -50vw;
    width: 100vw;
}

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
workarea-one_theme-1.3.1 app/assets/stylesheets/workarea/storefront/tools/_full_bleed_container.scss
workarea-haven_theme-1.4.0 app/assets/stylesheets/workarea/storefront/tools/_full_bleed_container.scss
workarea-haven_theme-1.3.0 app/assets/stylesheets/workarea/storefront/tools/_full_bleed_container.scss
workarea-one_theme-1.3.0 app/assets/stylesheets/workarea/storefront/tools/_full_bleed_container.scss