From 3feb79b0cf691492a2899f127942a4056bafe23f Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Tue, 13 May 2025 11:26:55 -0700 Subject: [PATCH] WIP --- dist/app.css | 5 +++++ dist/mix-manifest.json | 2 +- src/scss/flex-text-over-image-a.scss | 6 ++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/dist/app.css b/dist/app.css index c87dbe0..ba3a335 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12218,6 +12218,11 @@ section.side-by-side-text h2, section.side-by-side-text .h2 { .text-over-image-a .content-wrapper .content { color: #fff; } +@media (max-width: 767.98px) { + .text-over-image-a .col:last-of-type { + display: none; + } +} .text-over-image-b { background-position: center; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index 2fff6cb..98f8fdc 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=e87e05bd26822b1fc6dae092decfb838", - "/app.css": "/app.css?id=fefc9ed4a79cc3f82f483846c92a6126" + "/app.css": "/app.css?id=8a13ab0b4b1eb36e057ec8312614db54" } diff --git a/src/scss/flex-text-over-image-a.scss b/src/scss/flex-text-over-image-a.scss index 4b6a8e9..c13f584 100644 --- a/src/scss/flex-text-over-image-a.scss +++ b/src/scss/flex-text-over-image-a.scss @@ -12,4 +12,10 @@ color: $c-white; } } + + @include media-breakpoint-down(md) { + .col:last-of-type { + display: none; + } + } }