Devices and breakpoints
Learn how to customise breakpoints in Shopstory
Range
Starts from
Width
Height
Hidden?
Last updated
Learn how to customise breakpoints in Shopstory
Last updated
const shopstoryConfig : Config = {
devices: {
xs: {
w: 428, // Let's modify xs width and height to iPhone 13 Pro Max
h: 926
},
lg: {
hidden: false // Let's not hide horizontal tablets
},
xl: {
startsFrom: 1200 // Let's move breakpoint of xl range to 1200
}
},
// ...
}