Skip to content

Commit

Permalink
fix: position
Browse files Browse the repository at this point in the history
- fixes blur effect
  • Loading branch information
denchiklut committed Apr 4, 2024
1 parent 2732755 commit 254aad4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "loadable-image",
"version": "3.2.2",
"version": "3.2.3",
"repository": {
"type": "git",
"url": "git+https://github.com/denchiklut/loadable-image.git"
Expand Down
2 changes: 1 addition & 1 deletion src/async-image/image/image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const Image: FC<ImageProps> = ({
</Fade>
{inView && (
<Transition in={status === Status.LOADED} timeout={1000}>
<picture>
<picture style={absolute}>
{sources.map(sp => (
<source key={sp.srcSet} {...sp} />
))}
Expand Down

0 comments on commit 254aad4

Please sign in to comment.