amend font sizes
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
/>
|
||||
</div>
|
||||
<div v-if="imageCTA" class="flex flex-col items-end">
|
||||
<p v-if="imageCTA.description" class="text-lg mt-2">{{ imageCTA.description }}</p>
|
||||
<p v-if="imageCTA.description" class="text-lg-custom mt-2">{{ imageCTA.description }}</p>
|
||||
<NuxtLink v-if="imageCTA.button" :to="imageCTA.button.url">
|
||||
<ButtonCTA size="md" class="uppercase mt-4">{{ imageCTA.button.label }}</ButtonCTA>
|
||||
</NuxtLink>
|
||||
@@ -53,11 +53,11 @@
|
||||
<h2 class="font-bold ">{{ title }}</h2>
|
||||
<ul v-if="paragraphs" class="flex flex-col gap-6">
|
||||
<li v-for="(paragraph, index) in paragraphs" :key="`paragraph-${id}-${index}`">
|
||||
<p class="text-lg" v-html="paragraph"></p>
|
||||
<p class="text-lg-custom" v-html="paragraph"></p>
|
||||
</li>
|
||||
</ul>
|
||||
<div v-for="(list, index) in lists" :key="`list-${index}-${index}`" class="">
|
||||
<p v-if="list.description" class="text-lg mb-4">{{ list.description }}</p>
|
||||
<p v-if="list.description" class="text-lg-custom mb-4">{{ list.description }}</p>
|
||||
<ul v-if="list.items" class="flex flex-col gap-4">
|
||||
<li
|
||||
v-for="(item, index) in list.items"
|
||||
@@ -65,11 +65,11 @@
|
||||
:class="{
|
||||
'list-disc ml-6': hasBullets,
|
||||
}">
|
||||
<p class="text-lg" v-html="item"></p>
|
||||
<p class="text-lg-custom" v-html="item"></p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p class="text-lg" v-html="finalParagraph"></p>
|
||||
<p class="text-lg-custom" v-html="finalParagraph"></p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user