Terrific plug-in!
Is there a way to disable animations?
Because it's conflicting with my own stuff...
Thanks!
I think you can disable the css transitions like this:
.vue-grid-item {
/* transition: all 200ms ease; */
transition: none;
}
.vue-grid-layout {
/* transition: height 200ms ease; */
transition: none;
}
Most helpful comment
I think you can disable the css transitions like this: