Skip to content

Commit

Permalink
Put images in front of ticker
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnvdwerf committed Oct 13, 2024
1 parent d44e6df commit 365b33f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ const TextSlide = ({ content }: { content: Slide }) => (
)

const ImageSlide = ({ content }: { content: Slide }) => (
<div className="relative h-full w-full">
<img src={content.url} alt="" className="z-40 h-full w-full object-cover" />
<div className="relative z-40 h-full w-full">
<img src={content.url} alt="" className="h-full w-full object-cover" />
</div>
)

Expand Down

0 comments on commit 365b33f

Please sign in to comment.