From 51be7dc42d9e9746b42cf57d89d9924180b463fe Mon Sep 17 00:00:00 2001 From: Rakshat Date: Mon, 27 Apr 2026 18:30:52 +0530 Subject: [PATCH] fix(menu_bar): use corner radius from theme for menu border --- src/theme/style/menu_bar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme/style/menu_bar.rs b/src/theme/style/menu_bar.rs index ed0e657..7552501 100644 --- a/src/theme/style/menu_bar.rs +++ b/src/theme/style/menu_bar.rs @@ -71,7 +71,7 @@ impl StyleSheet for Theme { background: component.base.into(), border_width: 1.0, bar_border_radius: cosmic.corner_radii.radius_xl, - menu_border_radius: cosmic.corner_radii.radius_s.map(|x| x + 2.0), + menu_border_radius: cosmic.corner_radii.radius_m, border_color: component.divider.into(), background_expand: [1; 4], path: component.hover.into(),