Skip to content

Commit

Permalink
resolve z-index conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-i-todorov committed Jan 7, 2024
1 parent e686b22 commit 4105510
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/components/blurrable-image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ export const BlurrableImage = ({
}, [])

return (
<div className={clsx(getWidthAndHeight(props.className ?? ''), 'relative')}>
<div
className={clsx(
getWidthAndHeight(props.className ?? ''),
'relative isolate',
)}
>
{/* it gets the alt from the props */}
{/* eslint-disable-next-line jsx-a11y/alt-text */}
<img
Expand Down

0 comments on commit 4105510

Please sign in to comment.