Just as the title says.. would you be willing to build in a way to completely turn off all transitions/animations?
Thanks!
Hi @jasonhendee ,
You need to override the css to disable the transitions.
No need for an extra option.
Thanks,
Ended up doing exactly that. Thanks!
This worked for me.
In the top-level styles.css I've added:
gridster .gridster-column,
gridster .gridster-row,
gridster-item,
gridster-item.gridster-item-resizing,
gridster-item.gridster-item-moving {
transition: unset !important;
}
Most helpful comment
This worked for me.
In the top-level
styles.cssI've added: