Configure responsive breakpoints with breakAt
masterThe breakAt option allows you to change the number of columns and margins at specific viewport widths. When the viewport resizes, Macy automatically reruns to optimize the layout.
Changing columns and margins:
{
breakAt: {
760: {
margin: {
x: 20,
y: 10,
},
columns: 4
}
}
}Changing only one margin direction:
{
breakAt: {
760: {
margin: {
x: 20,
},
columns: 4
}
}
}