forked from Automattic/wp-calypso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreview.js
65 lines (64 loc) · 928 Bytes
/
preview.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import './index.scss';
export const parameters = {
layout: 'fullscreen',
viewport: {
viewports: {
HUGE: {
name: 'HUGE',
styles: {
width: '1440px',
height: '100%',
},
},
WIDE: {
name: 'WIDE',
styles: {
width: '1280px',
height: '100%',
},
},
XLARGE: {
name: 'XLARGE',
styles: {
width: '1080px',
height: '100%',
},
},
LARGE: {
name: 'LARGE',
styles: {
width: '960px',
height: '100%',
},
},
MEDIUM: {
name: 'MEDIUM',
styles: {
width: '782px',
height: '100%',
},
},
SMALL: {
name: 'SMALL',
styles: {
width: '600px',
height: '100%',
},
},
MOBILE: {
name: 'MOBILE',
styles: {
width: '480px',
height: '100%',
},
},
ZOOMED_IN: {
name: 'ZOOMED_IN',
styles: {
width: '280px',
height: '100%',
},
},
},
},
};