diff --git a/src/ui/main.rs b/src/ui/main.rs index e7a2b12..7d32caf 100644 --- a/src/ui/main.rs +++ b/src/ui/main.rs @@ -79,7 +79,13 @@ impl SimpleComponent for App { #[watch] add_css_class: match model.style { LauncherStyle::Modern => "", - LauncherStyle::Classic => "classic-style" + LauncherStyle::Classic => { + if model.loading.is_none() { + "classic-style" + } else { + "" + } + } }, #[watch]