Skip to content

Commit

Permalink
Fix image scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
lxsmnsyc committed Jan 19, 2024
1 parent cc47e83 commit 809996d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/start/shared/dev-overlay/DevOverlayDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export default function DevOverlayDialog(props: DevOverlayDialogProps): JSX.Elem
if (current) {
htmlToImage.toPng(current, {
style: {
transform: 'scale(1)',
transform: 'scale(0.75)',
},
}).then((url) => {
download(url, 'start-screenshot.png');
Expand Down

0 comments on commit 809996d

Please sign in to comment.