From eccec81d115772b1316b3a852bf5ec0a0a703091 Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Mon, 2 Jun 2025 16:35:22 -0700 Subject: [PATCH] WIP --- dist/app.css | 8 +++++--- dist/mix-manifest.json | 2 +- src/scss/flex-services-blocks.scss | 10 ++++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dist/app.css b/dist/app.css index eb690fc..9a773f4 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12567,13 +12567,15 @@ section.services-blocks .block:nth-of-type(even) svg { section.services-blocks .block:first-of-type { background-color: #B9AF78; } +@media (min-width: 992px) { + section.services-blocks .block:first-of-type { + flex: 1 1 100%; + } +} @media (min-width: 992px) { section.services-blocks .block { flex: 1 1 calc(50% - 0.75rem); } - section.services-blocks .block .block:first-of-type { - flex: 1 1 100%; - } } section.services-blocks .large-arrow { position: absolute; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index f6e8040..86c7400 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=b62bae51bfeeb61c4cdaecdcac588755" + "/app.css": "/app.css?id=d1a41f95b4155242bd796e9ebfbd17e1" } diff --git a/src/scss/flex-services-blocks.scss b/src/scss/flex-services-blocks.scss index 1f358c9..120eb6b 100644 --- a/src/scss/flex-services-blocks.scss +++ b/src/scss/flex-services-blocks.scss @@ -48,16 +48,14 @@ section.services-blocks { &:first-of-type { background-color: $c-tan; + + @include media-breakpoint-up(lg) { + flex: 1 1 100%; + } } @include media-breakpoint-up(lg) { flex: 1 1 calc(50% - 0.75rem); - - .block { - &:first-of-type { - flex: 1 1 100%; - } - } } }