From 7aa82b8600bc0d9be8b61b25f53e6324471ce0aa Mon Sep 17 00:00:00 2001 From: circular Date: Mon, 18 Nov 2024 11:01:49 +1100 Subject: [PATCH] add bg --- src/ui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/src/app.rs b/src/ui/src/app.rs index e2f0d2a..13b4115 100644 --- a/src/ui/src/app.rs +++ b/src/ui/src/app.rs @@ -55,6 +55,6 @@ impl Render for App { let title_bar = components::TitleBar::new() .child(div().flex().flex_row().text_color(rgb(0xFFFFFF)).gap_2().child(img("brand/scope-round-200.png").w_6().h_6()).child("Scope")); - div().w_full().h_full().flex().flex_col().child(title_bar).child(content) + div().bg(rgb(0x16171B)).w_full().h_full().flex().flex_col().child(title_bar).child(content) } }