This commit is contained in:
2025-06-02 16:43:53 -07:00
parent bc29a6f3ea
commit 5dbcbfd21d
3 changed files with 28 additions and 1 deletions

12
dist/app.css vendored
View File

@@ -12567,6 +12567,18 @@ section.services-blocks .block h3, section.services-blocks .block .h3 {
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
}
}
@media (min-width: 992px) {
section.services-blocks .block:nth-child(2) {
background-color: #F2F2F2;
color: #333333;
}
section.services-blocks .block:nth-child(2) h3, section.services-blocks .block:nth-child(2) .h3 {
color: #063C5A;
}
section.services-blocks .block:nth-child(2) 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;
}

View File

@@ -1,4 +1,4 @@
{
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
"/app.css": "/app.css?id=06870d25aaea3f68a0a39d5c93bc5218"
"/app.css": "/app.css?id=c95efc9ea68e8287f3276f61ce885e4d"
}

View File

@@ -49,6 +49,21 @@ section.services-blocks {
}
}
@include media-breakpoint-up(lg) {
&:nth-child(2) {
background-color: $c-offWhite;
color: $c-textGrey;
h3 {
color: $c-navy;
}
svg {
filter: brightness(0) saturate(100%) invert(21%) sepia(57%) saturate(688%) hue-rotate(162deg) brightness(92%) contrast(88%);
}
}
}
&:first-of-type {
background-color: $c-tan;