diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-22 10:03:40 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-22 10:03:40 +0300 |
| commit | 8589a3bc97190c3d3bbb7246ea517e7855abfeed (patch) | |
| tree | 7c92af8a6a72148973af1e0ec240a15f2386edea /src/components/widgets | |
| parent | d571a3720ae42f3cf5fddf2454e04aa2ad775b0c (diff) | |
cleanup and styling
Diffstat (limited to 'src/components/widgets')
| -rw-r--r-- | src/components/widgets/Hero.astro | 2 | ||||
| -rw-r--r-- | src/components/widgets/Hero2.astro | 2 | ||||
| -rw-r--r-- | src/components/widgets/HeroText.astro | 2 | ||||
| -rw-r--r-- | src/components/widgets/Note.astro | 2 | ||||
| -rw-r--r-- | src/components/widgets/Steps2.astro | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/components/widgets/Hero.astro b/src/components/widgets/Hero.astro index 700468c..cbd1154 100644 --- a/src/components/widgets/Hero.astro +++ b/src/components/widgets/Hero.astro @@ -31,7 +31,7 @@ const { { tagline && ( <p - class="text-base text-secondary dark:text-blue-200 font-bold tracking-wide uppercase intersect-once intersect-quarter motion-safe:md:opacity-0 motion-safe:md:intersect:animate-fade" + class="text-base text-secondary dark:text-primary font-bold tracking-wide uppercase intersect-once intersect-quarter motion-safe:md:opacity-0 motion-safe:md:intersect:animate-fade" set:html={tagline} /> ) diff --git a/src/components/widgets/Hero2.astro b/src/components/widgets/Hero2.astro index c6daa30..5527a91 100644 --- a/src/components/widgets/Hero2.astro +++ b/src/components/widgets/Hero2.astro @@ -31,7 +31,7 @@ const { { tagline && ( <p - class="text-base text-secondary dark:text-blue-200 font-bold tracking-wide uppercase intersect-once motion-safe:md:intersect:animate-fade motion-safe:md:opacity-0 intersect-quarter" + class="text-base text-secondary dark:text-primary font-bold tracking-wide uppercase intersect-once motion-safe:md:intersect:animate-fade motion-safe:md:opacity-0 intersect-quarter" set:html={tagline} /> ) diff --git a/src/components/widgets/HeroText.astro b/src/components/widgets/HeroText.astro index fa3e054..be2a1b6 100644 --- a/src/components/widgets/HeroText.astro +++ b/src/components/widgets/HeroText.astro @@ -30,7 +30,7 @@ const { { tagline && ( <p - class="text-base text-secondary dark:text-blue-200 font-bold tracking-wide uppercase intersect-once intersect-quarter motion-safe:md:opacity-0 motion-safe:md:intersect:animate-fade" + class="text-base text-secondary dark:text-primary font-bold tracking-wide uppercase intersect-once intersect-quarter motion-safe:md:opacity-0 motion-safe:md:intersect:animate-fade" set:html={tagline} /> ) diff --git a/src/components/widgets/Note.astro b/src/components/widgets/Note.astro index 3594b39..3f43881 100644 --- a/src/components/widgets/Note.astro +++ b/src/components/widgets/Note.astro @@ -14,7 +14,7 @@ const { } = Astro.props; --- -<section class="bg-blue-50 dark:bg-slate-800 not-prose"> +<section class="bg-section dark:bg-slate-800 not-prose"> <div class="max-w-6xl mx-auto px-4 sm:px-6 py-4 text-md text-center font-medium"> <Icon name={icon} class="w-5 h-5 inline-block align-text-bottom font-bold" /> <span class="font-bold" set:html={title} /> diff --git a/src/components/widgets/Steps2.astro b/src/components/widgets/Steps2.astro index e13a377..cb6e902 100644 --- a/src/components/widgets/Steps2.astro +++ b/src/components/widgets/Steps2.astro @@ -61,7 +61,7 @@ function makeEmailsClickable(text: string | undefined): string { ? items.map(({ title: title2, description, icon }, index) => ( <li class="flex md:-mx-4"> <div class="pr-4 sm:pl-4 rtl:pr-0 rtl:pl-4 rtl:sm:pl-0 rtl:sm:pr-4"> - <span class="flex w-16 h-16 mx-auto items-center justify-center text-2xl font-bold rounded-full bg-blue-100 text-primary"> + <span class="flex w-16 h-16 mx-auto items-center justify-center text-2xl font-bold rounded-full bg-stone-piaskowiec text-primary"> {icon ? <Icon name={icon} class="w-6 h-6 icon-bold" /> : index + 1} </span> </div> |
