Skip to content

Commit

Permalink
fix(base): fix image overflowing container in default preview
Browse files Browse the repository at this point in the history
  • Loading branch information
sjelfull committed Sep 17, 2021
1 parent 000ba59 commit f9caf98
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ const MediaWrapper = styled(Flex)`
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
object-fit: cover;
width: 100%;
height: 100%;
object-fit: contain;
border-radius: inherit;
}
Expand Down

3 comments on commit f9caf98

@vercel
Copy link

@vercel vercel bot commented on f9caf98 Sep 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

studio-workshop – ./dev/workshop

studio-workshop-git-next.sanity.build
studio-workshop.sanity.build

@vercel
Copy link

@vercel vercel bot commented on f9caf98 Sep 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

test-studio – ./

test-studio-git-next.sanity.build
test-studio.sanity.build

@vercel
Copy link

@vercel vercel bot commented on f9caf98 Sep 17, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

perf-studio – ./

perf-studio-git-next.sanity.build
perf-studio.sanity.build

Please sign in to comment.