diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-22 10:54:19 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-22 10:54:19 +0300 |
| commit | a74573f112ed28789a703a149919d8679352f2f1 (patch) | |
| tree | 4d0c1cb2ce37a1d0e2b20dfda0ecb874070dd561 /src/components/widgets | |
| parent | 198521b8bcf3c22bade6aee311c9aa0ff5f121f0 (diff) | |
Fix certificate size
Diffstat (limited to 'src/components/widgets')
| -rw-r--r-- | src/components/widgets/CallToActionImage.astro | 6 |
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> |
