Skip to content

Commit 4117a94

Browse files
committed
fix: 修复box-orient解析异常
1 parent 1dd7565 commit 4117a94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/style_propetries/box_orient.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ impl From<(String, &Property<'_>)> for BoxOrient {
2828
CSSBoxOrient::InlineAxis => EnumValue::InlineAxis,
2929
CSSBoxOrient::BlockAxis => EnumValue::BlockAxis,
3030
},
31-
_ => EnumValue::InlineAxis,
31+
_ => EnumValue::Vertical,
3232
},
3333
}
3434
}

0 commit comments

Comments
 (0)