Skip to content

Commit

Permalink
fix: define display icon for test-app breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaoste committed Jul 2, 2024
1 parent 28fbaa3 commit 6b123ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/test-apps/nextjs/src/eb-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,21 @@ defineBreakpoints([
id: 'test-desktop',
query: '*',
displayName: 'All Sizes',
displayIcon: 'desktop',
previewSize: '100%',
},
{
id: 'test-tablet',
query: '<982px',
displayName: 'Tablet',
displayIcon: 'tablet',
previewSize: '820px',
},
{
id: 'test-mobile',
query: '<360px',
displayName: 'Mobile',
displayIcon: 'mobile',
previewSize: '390px',
},
]);
3 changes: 3 additions & 0 deletions packages/test-apps/react-vite/src/eb-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,21 @@ defineBreakpoints([
id: 'test-desktop',
query: '*',
displayName: 'All Sizes',
displayIcon: 'desktop',
previewSize: '100%',
},
{
id: 'test-tablet',
query: '<982px',
displayName: 'Tablet',
displayIcon: 'tablet',
previewSize: '820px',
},
{
id: 'test-mobile',
query: '<360px',
displayName: 'Mobile',
displayIcon: 'mobile',
previewSize: '390px',
},
]);

0 comments on commit 6b123ed

Please sign in to comment.