From 935a3a286c418c0098a3a765d7eac902d7a35c37 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 30 Sep 2022 14:53:27 -0600 Subject: [PATCH] Adjust the break point --- examples/cosmic/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cosmic/src/main.rs b/examples/cosmic/src/main.rs index d5915a16..3849d646 100644 --- a/examples/cosmic/src/main.rs +++ b/examples/cosmic/src/main.rs @@ -88,7 +88,7 @@ impl Sandbox for Window { // involves allocations for many different items. Ideally, we could only make the nav bar // responsive and leave the content to be sized normally. responsive(|size| { - let condensed = size.width < 800.0; + let condensed = size.width < 900.0; let sidebar: Element<_> = nav_bar!( //TODO: Support symbolic icons nav_button!("network-wireless", "Wi-Fi", condensed)