From 90c5125abca88f4c70a3f566d9c0574d309841db Mon Sep 17 00:00:00 2001 From: Floyd Wang Date: Tue, 17 Sep 2024 10:26:47 +0800 Subject: [PATCH] Reduce `popover` border radius (#248) --- crates/ui/src/styled.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ui/src/styled.rs b/crates/ui/src/styled.rs index 71395df5..a61c13c4 100644 --- a/crates/ui/src/styled.rs +++ b/crates/ui/src/styled.rs @@ -126,7 +126,7 @@ pub trait StyledExt: Styled + Sized { .border_1() .border_color(cx.theme().border) .shadow_lg() - .rounded_lg() + .rounded(px(cx.theme().radius)) } }