This commit is contained in:
2025-06-02 16:21:56 -07:00
parent 73a4aea98d
commit 3a88013cc4
4 changed files with 26 additions and 13 deletions

5
dist/app.css vendored
View File

@@ -12555,6 +12555,11 @@ 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;
} }
@media (max-width: 991.98px) {
section.services-blocks .large-arrow {
display: none;
}
}
.post-type-archive-team-member .team-members h2, .post-type-archive-team-member .team-members .h2 { .post-type-archive-team-member .team-members h2, .post-type-archive-team-member .team-members .h2 {
color: #063C5A; color: #063C5A;

View File

@@ -1,4 +1,4 @@
{ {
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e", "/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
"/app.css": "/app.css?id=125870e5189a87c0e659686f2ed85640" "/app.css": "/app.css?id=236bf64d3c7c8284a2645df6fe9c2013"
} }

View File

@@ -38,4 +38,10 @@ section.services-blocks {
background-color: $c-tan; background-color: $c-tan;
} }
} }
.large-arrow {
@include media-breakpoint-down(lg) {
display: none;
}
}
} }

View File

@@ -4,6 +4,7 @@
<div class="col"> <div class="col">
<h2>{{ headline }}</h2> <h2>{{ headline }}</h2>
<div class="blocks">
{{#each callouts}} {{#each callouts}}
<div class="block"> <div class="block">
{{#assetContents arrow-circle.svg}} {{#assetContents arrow-circle.svg}}
@@ -20,4 +21,5 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</section> </section>