Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-teufel authored Apr 25, 2024
1 parent 2f0c829 commit e29bea1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/widgets/Hero3.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const {
image = await Astro.slots.render('image'),
} = Astro.props;
---
<section class="relative md:-mt-[76px] not-prose" {...id ? { id } : {}}>
<section class="relative dark:bg-neutral-900 md:-mt-[76px] not-prose" {...id ? { id } : {}}>
<div class="absolute inset-0 pointer-events-none" aria-hidden="true"></div>
<div class="relative max-w-7xl mx-auto px-4 sm:px-6">
<div class="pt-0 md:pt-[76px] pointer-events-none"></div>
Expand Down
8 changes: 4 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const metadata = {
</Fragment>

<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
<div class="absolute inset-0 bg-blue-50 dark:bg-neutral-900"></div>
</Fragment>
</Content>

Expand Down Expand Up @@ -210,7 +210,7 @@ const metadata = {
</Fragment>

<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
<div class="absolute inset-0 bg-blue-50 dark:bg-neutral-900"></div>
</Fragment>
</Content>

Expand Down Expand Up @@ -253,7 +253,7 @@ const metadata = {
</Fragment>

<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
<div class="absolute inset-0 bg-blue-50 dark:bg-neutral-900"></div>
</Fragment>
</Content>

Expand Down Expand Up @@ -303,7 +303,7 @@ const metadata = {
</Fragment>

<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
<div class="absolute inset-0 bg-blue-50 dark:bg-neutral-900"></div>
</Fragment>
</Content>

Expand Down

0 comments on commit e29bea1

Please sign in to comment.