This commit is contained in:
2025-06-02 16:30:20 -07:00
parent 97342e5e1c
commit 8c2f94f7c4
3 changed files with 22 additions and 1 deletions

10
dist/app.css vendored
View File

@@ -12541,6 +12541,7 @@ section.services-blocks .block {
padding: 2rem 1.5rem; padding: 2rem 1.5rem;
background-color: #075179; background-color: #075179;
color: #fff; color: #fff;
flex: 1 1 calc(50% - 0.75rem);
} }
section.services-blocks .block svg { section.services-blocks .block svg {
margin-bottom: 1rem; margin-bottom: 1rem;
@@ -12560,6 +12561,7 @@ section.services-blocks .block:nth-of-type(even) svg {
} }
section.services-blocks .block:first-of-type { section.services-blocks .block:first-of-type {
background-color: #B9AF78; background-color: #B9AF78;
flex: 1 1 100%;
} }
section.services-blocks .large-arrow { section.services-blocks .large-arrow {
position: absolute; position: absolute;
@@ -12569,6 +12571,14 @@ section.services-blocks .large-arrow {
width: 40%; width: 40%;
height: auto; height: auto;
} }
section.services-blocks .large-arrow svg {
width: 100%;
height: auto;
position: absolute;
bottom: 0;
right: 0;
margin: 0;
}
@media (max-width: 991.98px) { @media (max-width: 991.98px) {
section.services-blocks .large-arrow { section.services-blocks .large-arrow {
display: none; display: none;

View File

@@ -1,4 +1,4 @@
{ {
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e", "/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
"/app.css": "/app.css?id=3278df513f6d55d96d3340bcef193fb6" "/app.css": "/app.css?id=d2d5d155f950e643ce7db448704b9bd9"
} }

View File

@@ -19,6 +19,7 @@ section.services-blocks {
padding: 2rem 1.5rem; padding: 2rem 1.5rem;
background-color: $c-lightNavy; background-color: $c-lightNavy;
color: $c-white; color: $c-white;
flex: 1 1 calc(50% - 0.75rem);
svg { svg {
margin-bottom: 1rem; margin-bottom: 1rem;
@@ -43,6 +44,7 @@ section.services-blocks {
&:first-of-type { &:first-of-type {
background-color: $c-tan; background-color: $c-tan;
flex: 1 1 100%;
} }
} }
@@ -54,6 +56,15 @@ section.services-blocks {
width: 40%; width: 40%;
height: auto; height: auto;
svg {
width: 100%;
height: auto;
position: absolute;
bottom: 0;
right: 0;
margin: 0;
}
@include media-breakpoint-down(lg) { @include media-breakpoint-down(lg) {
display: none; display: none;
} }