From 19b10d7802613def0872d4393dea5e8e1eb7b81a Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Tue, 17 Jun 2025 11:01:55 -0700 Subject: [PATCH] four col thing --- dist/app.css | 8 +++++++- dist/mix-manifest.json | 2 +- src/scss/flex-background-image-cta.scss | 10 +++++++++- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/dist/app.css b/dist/app.css index b11b2ca..03c2e57 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12558,6 +12558,12 @@ footer.sub-footer { background-position: center; position: relative; } +.background-image-cta.no-button { + padding: 10rem 0; +} +.background-image-cta.no-button p { + margin: 0; +} .background-image-cta.overlay-White:before { content: ""; position: absolute; @@ -12579,7 +12585,7 @@ footer.sub-footer { left: 0; width: 100%; height: 100%; - background: rgba(0, 0, 0, 0.8); + background: rgba(0, 0, 0, 0.6); z-index: 1; } .background-image-cta.overlay-Black .col:last-of-type { diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index 2e09c91..7279545 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=e4b8956c70bf9d6dd7a8fc3297132676" + "/app.css": "/app.css?id=e3af8a40ecb4da069956e4f3e20e929b" } diff --git a/src/scss/flex-background-image-cta.scss b/src/scss/flex-background-image-cta.scss index 1653fce..4112850 100644 --- a/src/scss/flex-background-image-cta.scss +++ b/src/scss/flex-background-image-cta.scss @@ -4,6 +4,14 @@ background-position: center; position: relative; + &.no-button { + padding: 10rem 0; + + p { + margin: 0; + } + } + &.overlay-White { &:before { content: ""; @@ -28,7 +36,7 @@ left: 0; width: 100%; height: 100%; - background: rgba($c-black, 0.8); + background: rgba($c-black, 0.6); z-index: 1; }