antoniandre / splitpanes

A Vue 3 (and 2) reliable, simple and touch-ready panes splitter / resizer.
https://antoniandre.github.io/splitpanes
MIT License
1.9k stars 168 forks source link

Disable animations #114

Closed Fuzzyma closed 3 years ago

Fuzzyma commented 3 years ago

Is there a way to disable the animations of the panes?

antoniandre commented 3 years ago

Hi @Fuzzyma, yes this is possible via CSS:

.splitpanes .splitpanes__pane {transition: none;}

Hope it helps!

vinaysudani commented 2 years ago

I needed to add !important to make it work

.splitpanes .splitpanes__pane {transition: none !important;}