This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Description
I tried to change the duration of transition, but jit compiler doesn't apply this. It always applies the default 150ms value.
transition duration-[250ms]
Generated css;
.transition {
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}