Skip to content

Commit

Permalink
fix(ui): disable pointer events on main image
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonsaldan committed Dec 26, 2024
1 parent bcfd985 commit 13696e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function Hero() {
<div className="relative mt-12 h-[150px] overflow-hidden sm:h-[450px]">
<img
src="/images/nocturne.png"
className="absolute left-1/2 w-full -translate-x-1/2 animate-fade-up object-contain opacity-0"
className="pointer-events-none absolute left-1/2 w-full -translate-x-1/2 animate-fade-up object-contain opacity-0"
/>
</div>
</div>
Expand Down

0 comments on commit 13696e3

Please sign in to comment.