From 4b3731bf14251d5ed681d0289a7ed41cfbcf0de1 Mon Sep 17 00:00:00 2001 From: Floyd Wang Date: Tue, 23 Sep 2025 13:46:35 +0800 Subject: [PATCH] divider: Remove the horizontal divider full width style (#1278) --- crates/ui/src/divider.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ui/src/divider.rs b/crates/ui/src/divider.rs index 1e1f0642..dd05cef4 100644 --- a/crates/ui/src/divider.rs +++ b/crates/ui/src/divider.rs @@ -29,7 +29,7 @@ impl Divider { /// Creates a horizontal divider. pub fn horizontal() -> Self { Self { - base: div().w_full(), + base: div(), axis: Axis::Horizontal, label: None, color: None,