We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a73f267 commit 791cd84Copy full SHA for 791cd84
src/style_propetries/transition.rs
@@ -118,7 +118,7 @@ impl From<(String, &Property<'_>)> for Transition {
118
_ => TransitionTimingFunction::EasingFunction(transition.timing_function.clone()),
119
});
120
if transition.property == PropertyId::All {
121
- transtition_property = Some(-1);
+ transtition_property = Some(CSSPropertyType::All as i32);
122
} else {
123
transtition_property = Some(convert_property_to_cssty(&transition.property) as i32);
124
}
0 commit comments