grapesjs-clot
Version:
Free and Open Source Web Builder Framework
32 lines (30 loc) • 638 B
JavaScript
export default {
// The device `id` to select on start, if not indicated, the first available from `devices` will be used.
default: null,
// Default devices
devices: [
{
id: 'desktop',
name: 'Desktop',
width: '',
},
{
id: 'tablet',
name: 'Tablet',
width: '770px',
widthMedia: '992px',
},
{
id: 'mobileLandscape',
name: 'Mobile landscape',
width: '568px',
widthMedia: '768px',
},
{
id: 'mobilePortrait',
name: 'Mobile portrait',
width: '320px',
widthMedia: '480px',
},
],
};