libreria-astro-lefebvre 0.0.14 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -32,7 +32,7 @@ const randomId = Math.floor(Math.random() * 1000);
|
|
|
32
32
|
<div class="w-full ">
|
|
33
33
|
<div id={carouselId} class="glider w-full">
|
|
34
34
|
{items.map((item, idx) => (
|
|
35
|
-
<div class="flex p-10 bg-white">
|
|
35
|
+
<div class="flex flex-col items-center p-10 bg-white">
|
|
36
36
|
{item.iframeSrc ? (
|
|
37
37
|
<div class="w-full">
|
|
38
38
|
<span class={`popup-iframe-trigger-${randomId} cursor-pointer`} data-iframesrc={item.iframeSrc}>
|
|
@@ -48,7 +48,7 @@ const randomId = Math.floor(Math.random() * 1000);
|
|
|
48
48
|
</div>
|
|
49
49
|
</div>
|
|
50
50
|
) : (
|
|
51
|
-
<img src={item.image} alt={item.altImage} class="!
|
|
51
|
+
<img src={item.image} alt={item.altImage} class="!max-w-[250px] w-fit" />
|
|
52
52
|
<p>{item.descriptionImage}</p>
|
|
53
53
|
)}
|
|
54
54
|
</div>
|