libreria-astro-lefebvre 0.1.43 → 0.1.44
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
|
@@ -38,7 +38,7 @@ const hasContent = title || description;
|
|
|
38
38
|
<section class={`w-full flex flex-col ${hasContent ? 'justify-between' : 'justify-center'} items-center p-6 rounded-2xl bg-cover bg-center min-h-[289px] bg-white`} style={backgroundStyle}>
|
|
39
39
|
{hasContent && (
|
|
40
40
|
<div class="w-full max-w-7xl flex flex-col items-center justify-center text-left gap-4">
|
|
41
|
-
{title && <
|
|
41
|
+
{title && <p class="text-[#262626] font-poppins text-2xl font-semibold leading-8">{title}</p>}
|
|
42
42
|
{description && <p class="text-[#363942] font-inter text-base font-normal leading-6" set:html={description}></p>}
|
|
43
43
|
</div>
|
|
44
44
|
)}
|
|
@@ -60,7 +60,7 @@ const hasContent = title || description;
|
|
|
60
60
|
<section class={`w-full flex flex-col items-center p-6 rounded-2xl bg-cover bg-center min-h-[289px] my-8 ${hasContent ? 'justify-between gap-6' : ''}`} style={backgroundStyle}>
|
|
61
61
|
{hasContent && (
|
|
62
62
|
<div class={`w-full max-w-7xl flex flex-col items-center justify-center text-left gap-4 ${darkImage ? 'bg-white/50 backdrop-blur-sm rounded-2xl p-6' : ''}`}>
|
|
63
|
-
{title && <
|
|
63
|
+
{title && <p class="text-[#262626] font-poppins text-2xl font-semibold leading-8">{title}</p>}
|
|
64
64
|
{description && <p class="text-[#363942] font-inter text-base font-normal leading-6" set:html={description}></p>}
|
|
65
65
|
</div>
|
|
66
66
|
)}
|
|
@@ -60,7 +60,7 @@ const categories = [
|
|
|
60
60
|
<div class="max-w-7xl flex-wrap md:flex-nowrap w-full px-4 md:px-0 flex items-start mx-auto">
|
|
61
61
|
{categories.map(category => (
|
|
62
62
|
<div class="w-1/2 flex-nowrap px-2 md:px-4 mb-4 flex-1">
|
|
63
|
-
<
|
|
63
|
+
<p class="text-xl text-[#262626] font-semibold mb-4">{category.name}</p>
|
|
64
64
|
<ul>
|
|
65
65
|
{category.subcategories.length > 0 ? (
|
|
66
66
|
category.subcategories.map(sub => (
|