Lag while changing passages

Twine Version: 2.4.1
[Sugarcube2]

Hi there, I would like to ask if there is any way how to speed up change between passages?

When I click a link, there is a short lag when nothing happens and then new passage loads with “appearing from nothing” transition.

I would like to make it that there isnt this lag, nor transition that slows things down in general.
I have managed to circumvent this somewhat by using REPLACE+INCLUDE tag, that changes a div/span that contains whole passage, but I would like to ask if there is a more convenient way to do this.

For context, I am not creating a game per se, but interactive character sheet for TTRPG, so quick navigaion is favored over “cool transition”

Thanks in advance!

Just add this to your story stylesheet:

.passage { transition: none; }

Works great, thanks a lot!