Skip to content

Commit

Permalink
playground: fix sizes for small displays
Browse files Browse the repository at this point in the history
  • Loading branch information
draedful committed Oct 11, 2024
1 parent 38ea81c commit f44085d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stories/Playground/generateLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export function createPlaygroundBlock(x: number, y: number, index): TGravityBloc
is: 'gravity',
x,
y,
width: 63 * window.devicePixelRatio,
height: 63 * window.devicePixelRatio,
width: 63 * 2,
height: 63 * 2,
selected: false,
name: `Block ${index}`,
meta: {
Expand Down

0 comments on commit f44085d

Please sign in to comment.