This commit is contained in:
2025-06-02 16:32:53 -07:00
parent 8c2f94f7c4
commit a24357d9ad
3 changed files with 28 additions and 5 deletions

13
dist/app.css vendored
View File

@@ -12536,12 +12536,16 @@ section.services-blocks .blocks {
flex-direction: column;
gap: 1.5rem;
}
@media (min-width: 992px) {
section.services-blocks .blocks {
flex-direction: row;
}
}
section.services-blocks .block {
position: relative;
padding: 2rem 1.5rem;
background-color: #075179;
color: #fff;
flex: 1 1 calc(50% - 0.75rem);
}
section.services-blocks .block svg {
margin-bottom: 1rem;
@@ -12561,7 +12565,14 @@ 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 {
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;

View File

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

View File

@@ -12,6 +12,10 @@ section.services-blocks {
display: flex;
flex-direction: column;
gap: 1.5rem;
@include media-breakpoint-up(lg) {
flex-direction: row;
}
}
.block {
@@ -19,7 +23,6 @@ section.services-blocks {
padding: 2rem 1.5rem;
background-color: $c-lightNavy;
color: $c-white;
flex: 1 1 calc(50% - 0.75rem);
svg {
margin-bottom: 1rem;
@@ -44,9 +47,18 @@ section.services-blocks {
&:first-of-type {
background-color: $c-tan;
}
@include media-breakpoint-up(lg) {
flex: 1 1 calc(50% - 0.75rem);
.block {
&:first-of-type {
flex: 1 1 100%;
}
}
}
}
.large-arrow {
position: absolute;