Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 66 | 304x 304x 304x | export const CONF_KEY = 'nfqgrid';
export const DIMENSIONS = ['xs', 'sm', 'md', 'lg', 'xl', 'xxl'];
export const DEFAULT_CONF = {
baseSpacing: 5,
breakpoints: {
lg: 992,
md: 769,
sm: 576,
xl: 1200,
xs: 0,
xxl: 1600
},
columns: {
lg: 12,
md: 8,
sm: 8,
xl: 12,
xs: 4,
xxl: 12
},
container: {
lg: 1440,
md: 'fluid',
sm: 'fluid',
xl: 1440,
xs: 'fluid',
xxl: 1440
},
debug: {
col: {
background: '#9a67cb',
outline: '#ffffff',
padding: '#c2cf8a'
},
container: {
background: '#5901ad40',
outline: '#ffffff'
},
row: {
background: '#5901ad40',
outline: '#ffffff'
},
spacer: {
background: '#f9cc9d',
outline: '#ffffff'
}
},
gutterWidth: {
lg: 20,
md: 20,
sm: 20,
xl: 20,
xs: 20,
xxl: 20
},
mediaQuery: 'only screen',
paddingWidth: {
lg: 10,
md: 10,
sm: 10,
xl: 10,
xs: 10,
xxl: 10
}
}; |