Skip to content

Commit

Permalink
prevent transitions on the header
Browse files Browse the repository at this point in the history
  • Loading branch information
illourr committed Jan 29, 2024
1 parent 12c18da commit df2b303
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
import { Image } from 'astro:assets';
import myPicture from '../../public/images/me.png'
import Link from './Link.astro';
---

<nav class="prose">
<nav class="prose" transition:animate="none">
<Image width="63" height="63" src={myPicture} alt="Picture of Dillon Curry" class="my-1" />
<ul class="mt-0 flex items-center" >
<li>
Expand Down

0 comments on commit df2b303

Please sign in to comment.