From 44be1f01bb3affb7fb32bf90cffc02cebe32104b Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Tue, 3 Jun 2025 08:21:23 -0700 Subject: [PATCH] WIP --- dist/app.css | 6 ++++++ dist/mix-manifest.json | 2 +- src/scss/flex-5050-cta.scss | 8 ++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/dist/app.css b/dist/app.css index a11a2c9..a9b9257 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12382,6 +12382,12 @@ section.flex-5050-cta { position: relative; padding: 6rem 0; } +section.flex-5050-cta.grey { + background-color: #F2F2F2; +} +section.flex-5050-cta.grey .row { + flex-direction: row-reverse; +} @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 3149c88..d288090 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=1aa530ca56397d7f27749e5210b1199e" + "/app.css": "/app.css?id=6ee0760fe1c21dd66ed8ed020bbebfe4" } diff --git a/src/scss/flex-5050-cta.scss b/src/scss/flex-5050-cta.scss index c594444..71e5f60 100644 --- a/src/scss/flex-5050-cta.scss +++ b/src/scss/flex-5050-cta.scss @@ -2,6 +2,14 @@ section.flex-5050-cta { position: relative; padding: 6rem 0; + &.grey { + background-color: $c-offWhite; + + .row { + flex-direction: row-reverse; + } + } + @include media-breakpoint-down(lg) { .col:last-of-type { display: none;