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 {
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 {
color: #063C5A;

View File

@@ -1,4 +1,4 @@
{
"/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;
}
}
.large-arrow {
@include media-breakpoint-down(lg) {
display: none;
}
}
}

View File

@@ -4,19 +4,21 @@
<div class="col">
<h2>{{ headline }}</h2>
{{#each callouts}}
<div class="block">
{{#assetContents arrow-circle.svg}}
<h3>{{ headline }}</h3>
{{{ description }}}
<div class="blocks">
{{#each callouts}}
<div class="block">
{{#assetContents arrow-circle.svg}}
<h3>{{ headline }}</h3>
{{{ description }}}
{{#if @first}}
<div class="large-arrow">
{{#assetContents arrow-circle.svg}}
</div>
{{/if}}
</div>
{{/each}}
{{#if @first}}
<div class="large-arrow">
{{#assetContents arrow-circle.svg}}
</div>
{{/if}}
</div>
{{/each}}
</div>
</div>
</div>
</div>