This commit is contained in:
2025-05-07 13:57:13 -07:00
parent 7d41159e79
commit 37f0958a80
4 changed files with 18 additions and 6 deletions

9
dist/app.css vendored
View File

@@ -12043,12 +12043,17 @@ a {
.cta-button a {
background-color: #063C5A;
color: #fff;
display: inline-block;
display: inline-flex;
justify-content: center;
align-items: center;
height: 52px;
width: 360px;
max-width: 100%;
border-radius: 42px;
text-align: center;
}
.cta-button a:hover {
background-color: #B9AF78;
color: #063C5A;
}
.intro_block, .team-member-top, .team-members-top {

View File

@@ -1,4 +1,4 @@
{
"/app.js": "/app.js?id=099e96d934e937b07341f2ca9fb82ec2",
"/app.css": "/app.css?id=fae5d262487b5908ed0801126042eb22"
"/app.css": "/app.css?id=4f1103a8f999ff4b498ceef6beea1123"
}

View File

@@ -12,14 +12,21 @@ a {
.cta-button {
margin-bottom: 0;
a {
background-color: $c-navy;
color: $c-white;
display: inline-block;
display: inline-flex ;
justify-content: center;
align-items: center;
height: 52px;
width: 360px;
max-width: 100%;
border-radius: 42px;
text-align: center;
&:hover {
background-color: $c-tan;
color: $c-navy;
}
}
}

View File

@@ -7,7 +7,7 @@
{{{ content }}}
{{#if button_target}}
<p class="cta-button mt-4">
<p class="cta-button mt-5">
<a href="{{ button_target }}">{{ button_text }}</a>
</p>
{{/if}}