From 4796334475e12f190dd479e9dfc8ccec21c352f9 Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Tue, 17 Jun 2025 10:58:39 -0700 Subject: [PATCH] four col thing --- dist/app.css | 4 ++++ dist/mix-manifest.json | 2 +- src/scss/flex-background-image-cta.scss | 5 +++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/dist/app.css b/dist/app.css index 90999ca..b11b2ca 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12570,6 +12570,7 @@ footer.sub-footer { } .background-image-cta.overlay-Black { color: #fff; + text-align: center; } .background-image-cta.overlay-Black:before { content: ""; @@ -12581,6 +12582,9 @@ footer.sub-footer { background: rgba(0, 0, 0, 0.8); z-index: 1; } +.background-image-cta.overlay-Black .col:last-of-type { + display: none; +} .background-image-cta .container { position: relative; z-index: 2; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index b4a7be8..2e09c91 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=8af0c9c0d989b79afe124f8138dc1a63", - "/app.css": "/app.css?id=1d2f6afaa80ea821ddceaec15e7c98e7" + "/app.css": "/app.css?id=e4b8956c70bf9d6dd7a8fc3297132676" } diff --git a/src/scss/flex-background-image-cta.scss b/src/scss/flex-background-image-cta.scss index 6e8807c..1653fce 100644 --- a/src/scss/flex-background-image-cta.scss +++ b/src/scss/flex-background-image-cta.scss @@ -19,6 +19,7 @@ &.overlay-Black { color: $c-white; + text-align: center; &:before { content: ""; @@ -30,6 +31,10 @@ background: rgba($c-black, 0.8); z-index: 1; } + + .col:last-of-type { + display: none; + } } .container {