diff --git a/dist/app.css b/dist/app.css index ca6e6e9..a6813c1 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12394,6 +12394,9 @@ section.flex-5050-cta.grey .overflow-image { width: 48% !important; height: 100% !important; } +section.flex-5050-cta.contain .overflow-image { + display: none !important; +} @media (max-width: 991.98px) { section.flex-5050-cta .col:last-of-type { display: none; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index 29dc62e..c12795a 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e", - "/app.css": "/app.css?id=2f7ba30e071cbd564c36e453568cf64c" + "/app.css": "/app.css?id=e3d09ab0e84dd0320666130a23ffa185" } diff --git a/src/scss/flex-5050-cta.scss b/src/scss/flex-5050-cta.scss index 3b8e1d0..c285c42 100644 --- a/src/scss/flex-5050-cta.scss +++ b/src/scss/flex-5050-cta.scss @@ -2,6 +2,7 @@ section.flex-5050-cta { position: relative; padding: 6rem 0; + // grey mode &.grey { background-color: $c-offWhite; @@ -17,6 +18,13 @@ section.flex-5050-cta { } } + // image contain mode + &.contain { + .overflow-image { + display: none !important; + } + } + @include media-breakpoint-down(lg) { .col:last-of-type { display: none;