summaryrefslogtreecommitdiff
path: root/src/components/widgets/CallToActionImage.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/widgets/CallToActionImage.astro')
-rw-r--r--src/components/widgets/CallToActionImage.astro6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/widgets/CallToActionImage.astro b/src/components/widgets/CallToActionImage.astro
index 2912d6d..df13145 100644
--- a/src/components/widgets/CallToActionImage.astro
+++ b/src/components/widgets/CallToActionImage.astro
@@ -45,7 +45,7 @@ const {
/>
{
image && (
- <div class="flex justify-center mt-6">
+ <div class="flex justify-center mt-6 px-4">
{image.href ? (
<a
href={image.href}
@@ -56,14 +56,14 @@ const {
<Image
src={image.src}
alt={image.alt}
- class="h-16 w-auto"
+ class="max-h-20 h-auto w-auto max-w-full object-contain"
/>
</a>
) : (
<Image
src={image.src}
alt={image.alt}
- class="h-16 w-auto"
+ class="max-h-20 h-auto w-auto max-w-full object-contain"
/>
)}
</div>