libreria-astro-lefebvre 0.0.44 → 0.0.45
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
|
@@ -53,7 +53,7 @@ const structuredData = `<script type="application/ld+json">
|
|
|
53
53
|
<div class={`flex-col md:flex ${orientation === 'left' ? 'flex-row' : 'flex-row-reverse'} w-full items-start gap-4 justify-center`}>
|
|
54
54
|
<div class="w-full md:w-1/3 flex justify-start mb-8 flex-col">
|
|
55
55
|
<h2 class="w-[300px] sm:w-auto font-poppins text-[#262626] text-[32px] font-semibold text-left leading-[40px] mb-[16px] text-wrap">{title}</h2>
|
|
56
|
-
<p class="text-[#363942]">{description}</p>
|
|
56
|
+
<p class="text-[#363942] font-poppins text-xl">{description}</p>
|
|
57
57
|
</div>
|
|
58
58
|
<div class={`w-full md:w-1/2 p-0 md:p-4 flex items-center ${orientation === 'left' ? 'justify-end' : 'justify-start'}`}>
|
|
59
59
|
<div id={idTargetLf2} class="w-full flex flex-col mx-auto gap-3"></div>
|
|
@@ -29,7 +29,7 @@ const {
|
|
|
29
29
|
<div class="w-full md:w-1/3 content-center flex flex-col flex-wrap h-full text-[#262626] nth-of-type-2:p-4 nth-of-type-2:border nth-of-type-2:border-y-1 nth-of-type-2:border-x-0 md:nth-of-type-2:border md:nth-of-type-2:border-x-1 md:nth-of-type-2:border-y-0 ">
|
|
30
30
|
<p class="text-[40px] md:text-[56px] text-center leading-[48px] md:leading-[64px] mb-[16px] font-poppins font-semibold">{item.title}</p>
|
|
31
31
|
<p
|
|
32
|
-
class="text-xl text-center font-
|
|
32
|
+
class="text-xl text-center font-poppins font-xl leading-[28px] flex flex-col gap-4"
|
|
33
33
|
set:html={item.description}></p>
|
|
34
34
|
</div>
|
|
35
35
|
))}
|
|
@@ -45,6 +45,7 @@ const structuredData = `<script type="application/ld+json">
|
|
|
45
45
|
: tipo === "h1-40-left" ? <h1 class="font-poppins text-[#262626] text-[40px] font-normal text-left leading-[48px] mb-[0] md:mb-[32px]" set:html={title}></h1>
|
|
46
46
|
: tipo === "h2" ? <h2 class="font-poppins text-[#262626] text-[36px] md:text-[40px] font-normal text-center leading-[48px] my-[32px] md:mb-[32px]" set:html={title}></h2>
|
|
47
47
|
: tipo === "h2-mb64" ? <h2 class="font-poppins text-[#262626] text-[36px] md:text-[40px] font-normal text-center leading-[44px] md:leading-[48px] p-6 md:p-2 md:pb-6 mb-[0]" set:html={title}></h2>
|
|
48
|
+
: tipo === "h2-mb64-max900" ? <h2 class="font-poppins text-[#262626] text-[36px] md:text-[40px] max-w-[900px] font-normal text-center leading-[44px] md:leading-[48px] p-6 md:p-2 md:pb-6 mb-[0]" set:html={title}></h2>
|
|
48
49
|
: tipo === "h3" ? <h3 class="font-poppins text-[#262626] text-[24px] font-semibold text-center leading-[32px] mb-[8px]" set:html={title}></h3>
|
|
49
50
|
: tipo === "h3-mb32" ? <h3 class="font-poppins text-[#262626] text-[32px] font-normal text-left leading-[40px] mb-[32px]" set:html={title}></h3>
|
|
50
51
|
: tipo === "h4" ? <h4 class="font-poppins text-[#262626] text-center" set:html={title}></h4>
|