The key issue isn't about CSS rotation
The key issue isn't about CSS rotation implementation, but rather performance optimization. My project recently encountered challenges where minor style updates triggered full-page refreshes, significantly impacting performance. Looking for best practice efficient ways to minimize unnecessary re-renders.
1 Reply
Ah I see. Changes to things that are also stored on the Python side could cause this. For performance (and especially responsivity), it's best to keep animations, etc, that don't need to be controlled from Python purely front-end, using things like Vue templates and pure CSS.