mirror of https://github.com/artf/grapesjs.git
2 changed files with 26 additions and 28 deletions
@ -1,3 +1,27 @@ |
|||
export default { |
|||
devices: [] |
|||
devices: [ |
|||
{ |
|||
id: 'desktop', |
|||
name: 'Desktop', |
|||
width: '' |
|||
}, |
|||
{ |
|||
id: 'tablet', |
|||
name: 'Tablet', |
|||
width: '768px', |
|||
widthMedia: '992px' |
|||
}, |
|||
{ |
|||
id: 'mobileLandscape', |
|||
name: 'Mobile landscape', |
|||
width: '568px', |
|||
widthMedia: '768px' |
|||
}, |
|||
{ |
|||
id: 'mobilePortrait', |
|||
name: 'Mobile portrait', |
|||
width: '320px', |
|||
widthMedia: '480px' |
|||
} |
|||
] |
|||
}; |
|||
|
|||
Loading…
Reference in new issue