libreria-astro-lefebvre 0.1.52 → 0.1.53
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
|
@@ -45,7 +45,7 @@ const uid = 'almeria-' + Math.random().toString(36).substring(2, 11);
|
|
|
45
45
|
)}
|
|
46
46
|
|
|
47
47
|
<div id={`modal-${uid}`} class="fixed w-full h-full pt-12 top-0 left-0 z-9999 hidden bg-gray-100/60 backdrop-blur-sm flex items-center justify-center">
|
|
48
|
-
<div class="flex flex-col w-full md:w-4/5 max-w-[
|
|
48
|
+
<div class="flex flex-col w-full md:w-4/5 max-w-[500px] max-h-[calc(100vh-96px)] m-auto p-4 rounded-2xl bg-white shadow-lg border border-[#B6B7BB] overflow-y-auto modal-guia">
|
|
49
49
|
<div class="w-full flex justify-end">
|
|
50
50
|
<button id={`js-close-${uid}`} aria-label="Cerrar" class="js-close-popup w-auto transition-transform hover:scale-125 cursor-pointer">X</button>
|
|
51
51
|
</div>
|
|
@@ -57,10 +57,10 @@ const uid = 'almeria-' + Math.random().toString(36).substring(2, 11);
|
|
|
57
57
|
)}
|
|
58
58
|
<div class={imageModalUrl ? "w-full lg:w-2/3" : "w-full"}>
|
|
59
59
|
{titleModal && (
|
|
60
|
-
<p class="font-poppins text-[#262626] text-[28px] lg:text-[32px] font-normal text-left leading-10 mb-
|
|
60
|
+
<p class="font-poppins text-[#262626] text-[28px] lg:text-[32px] font-normal text-left leading-10 mb-5 titleModalClass">{titleModal}</p>
|
|
61
61
|
)}
|
|
62
62
|
{descriptionModal && (
|
|
63
|
-
<div class="font-
|
|
63
|
+
<div class="font-poppins text-[#363942] text-xl font-normal leading-7 mb-5 descriptionModalClass" set:html={descriptionModal} />
|
|
64
64
|
)}
|
|
65
65
|
<div id={`lf2-form-container-${uid}`} class="w-full flex flex-col mx-auto gap-3">
|
|
66
66
|
<!--FORMULARIO -->
|