From bc29a6f3ea50469ed197b1ff23bb9fc1cca8039b Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Mon, 2 Jun 2025 16:42:46 -0700 Subject: [PATCH] WIP --- dist/app.css | 20 +++++++++++--------- dist/mix-manifest.json | 2 +- src/scss/flex-services-blocks.scss | 18 ++++++++++-------- 3 files changed, 22 insertions(+), 18 deletions(-) diff --git a/dist/app.css b/dist/app.css index 321a981..11534eb 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12555,15 +12555,17 @@ section.services-blocks .block svg { section.services-blocks .block h3, section.services-blocks .block .h3 { font-weight: bold; } -section.services-blocks .block:nth-of-type(even) { - background-color: #F2F2F2; - color: #333333; -} -section.services-blocks .block:nth-of-type(even) h3, section.services-blocks .block:nth-of-type(even) .h3 { - color: #063C5A; -} -section.services-blocks .block:nth-of-type(even) svg { - filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%); +@media (max-width: 991.98px) { + section.services-blocks .block:nth-of-type(even) { + background-color: #F2F2F2; + color: #333333; + } + section.services-blocks .block:nth-of-type(even) h3, section.services-blocks .block:nth-of-type(even) .h3 { + color: #063C5A; + } + section.services-blocks .block:nth-of-type(even) svg { + filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%); + } } section.services-blocks .block:first-of-type { background-color: #B9AF78; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index f88dc32..fcc4586 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=8a50b8cdb89f246be53178cfe2b28e65" + "/app.css": "/app.css?id=06870d25aaea3f68a0a39d5c93bc5218" } diff --git a/src/scss/flex-services-blocks.scss b/src/scss/flex-services-blocks.scss index 5899ba7..6fcb7ce 100644 --- a/src/scss/flex-services-blocks.scss +++ b/src/scss/flex-services-blocks.scss @@ -34,16 +34,18 @@ section.services-blocks { font-weight: bold; } - &:nth-of-type(even) { - background-color: $c-offWhite; - color: $c-textGrey; + @include media-breakpoint-down(lg) { + &:nth-of-type(even) { + background-color: $c-offWhite; + color: $c-textGrey; - h3 { - color: $c-navy; - } + h3 { + color: $c-navy; + } - svg { - filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%); + svg { + filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%); + } } }