glamorous-grid
glamorous-grid copied to clipboard
Hiding a column
Something like the following could mean "hidden on xs, full width on sm".
{
span: {
xs: 0,
sm: 1
}
}
Or maybe this would be a better choice:
{
hidden: {
xs: true
}
}
Bootstrap 4 uses styles like hidden-sm-up and hidden-lg-down. Maybe just adding support for those attributes would be enough.