Skip to content

Commit

Permalink
add max-w-sm on images
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi committed Dec 18, 2024
1 parent 1e27517 commit 515e27c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/app/pages/PostInstall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const Steps = ({ openPopup }: { openPopup: () => Promise<void> }) => {
firefox: '/assets/images/wallet-signup-1-firefox.png',
edge: '/assets/images/wallet-signup-1-edge.png',
})}
className="mx-auto"
className="mx-auto max-w-sm"
style={{ maxHeight: 'max(35vh, 18rem)' }}
alt=""
/>
Expand All @@ -114,7 +114,7 @@ const Steps = ({ openPopup }: { openPopup: () => Promise<void> }) => {
<img
src="/assets/images/wallet-wallet-address.png"
alt=""
className="mx-auto"
className="mx-auto max-w-sm"
style={{ maxHeight: 'max(35vh, 18rem)' }}
/>
</Step>
Expand All @@ -137,7 +137,7 @@ const Steps = ({ openPopup }: { openPopup: () => Promise<void> }) => {
firefox: '/assets/images/pin-extension-firefox.png',
edge: '/assets/images/pin-extension-edge.png',
})}
className="mx-auto"
className="mx-auto max-w-sm"
style={{ maxHeight: 'max(35vh, 18rem)' }}
alt=""
/>
Expand Down

0 comments on commit 515e27c

Please sign in to comment.