summaryrefslogtreecommitdiff
path: root/src/components/widgets/Features2Custom.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/widgets/Features2Custom.astro')
-rw-r--r--src/components/widgets/Features2Custom.astro9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/components/widgets/Features2Custom.astro b/src/components/widgets/Features2Custom.astro
index 18c1546..605fd08 100644
--- a/src/components/widgets/Features2Custom.astro
+++ b/src/components/widgets/Features2Custom.astro
@@ -33,7 +33,7 @@ const {
<WidgetWrapper id={id} isDark={isDark} containerClass={`max-w-7xl mx-auto ${classes?.container ?? ''}`} bg={bg}>
<Headline title={title} subtitle={subtitle} tagline={tagline} classes={classes?.headline as Record<string, string>} />
-
+
{
items && items.length > 0 && (
<div
@@ -69,7 +69,10 @@ const {
)}
<div class={twMerge('text-xl font-bold', titleClass, itemClasses?.title)}>{title}</div>
{description && (
- <p class={twMerge('text-muted mt-2', descriptionClass, itemClasses?.description)} set:html={description} />
+ <p
+ class={twMerge('text-muted mt-2', descriptionClass, itemClasses?.description)}
+ set:html={description}
+ />
)}
{callToAction && (
<div class="mt-2">
@@ -81,4 +84,4 @@ const {
</div>
)
}
-</WidgetWrapper> \ No newline at end of file
+</WidgetWrapper>