Skip to content

Commit

Permalink
feat: add glow around image
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Oct 23, 2023
1 parent 6864284 commit c1fd703
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/components/intro.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ import { Image } from "astro:assets";
<span>Get started</span>
</a>
<div class="mx-auto max-w-screen-2xl pt-8">
<Image
class="relative w-full rounded-lg border border-default"
id="overview-image"
src={astrodarkImage}
alt="AstroNvim Overview"
/>
<div class="relative">
<div class="absolute inset-0 rounded-lg bg-primary blur-lg"></div>
<Image
class="relative w-full rounded-lg border border-default"
id="overview-image"
src={astrodarkImage}
alt="AstroNvim Overview"
/>
</div>
</div>
</ContentSection>
</div>

0 comments on commit c1fd703

Please sign in to comment.