CSR-1384: small css fix

This commit is contained in:
Adam Caouette 2023-11-06 15:27:42 -05:00
parent ab81351bd5
commit 374fc95342

View file

@ -11,10 +11,10 @@
<p class="mx-6 my-0 fw-bold alert-heading">{{ alertHeadline }}</p>
<template v-for="paragraph in splitAlertCopyForParagraphTag" :key="paragraph">
<p
class="mx-4 mt-1 text-body small"
class="mx-4 mt-1 mb-0 text-body small"
v-if="!doesCopyContainRouterLink(paragraph) && !doesCopyContainTextLink(paragraph)"
v-html="paragraph"></p>
<p class="mx-4 mt-1 text-body small" v-else>
<p class="mx-4 mt-1 mb-0 text-body small" v-else>
<template v-if="doesCopyContainRouterLink(paragraph)">
<textBlock :customText="paragraph" class="mb-1" marginTopSizeOverride="0" />
</template>