This commit is contained in:
2025-05-07 13:34:26 -07:00
parent e51449d5eb
commit 9b3639c850
4 changed files with 43 additions and 3 deletions

18
dist/app.css vendored
View File

@@ -12101,6 +12101,24 @@ section.multiblock-callout h2, section.multiblock-callout .h2 {
}
section.multiblock-callout .callouts-wrapper .callout {
padding-left: 3rem;
display: flex;
gap: 1rem;
}
section.multiblock-callout .callouts-wrapper .callout .image-wrapper {
width: 31px;
flex-shrink: 0;
}
section.multiblock-callout .callouts-wrapper .callout .content {
border-left: 1px solid #fff;
padding-left: 1rem;
}
section.multiblock-callout .callouts-wrapper .callout .content p {
margin-bottom: 0;
}
section.multiblock-callout .callouts-wrapper .callout .content p.headline {
color: #B9AF78;
font-size: 30px;
line-height: 34px;
}
.team-members .team-members-wrapper {

View File

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

View File

@@ -17,6 +17,28 @@ section.multiblock-callout {
.callouts-wrapper {
.callout {
padding-left: 3rem;
display: flex;
gap: 1rem;
.image-wrapper {
width: 31px;
flex-shrink: 0;
}
.content {
border-left: 1px solid $c-white;
padding-left: 1rem;
p {
margin-bottom: 0;
&.headline {
color: $c-tan;
font-size: 30px;
line-height: 34px;
}
}
}
}
}
}

View File

@@ -15,8 +15,8 @@
</div>
<div class="content">
{{ headline }}
{{ description }}
<p class="headline">{{ headline }}</p>
<p>{{ description }}</p>
</div>
</div>
{{/each}}