mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2024-11-26 06:44:26 +03:00
styles: fixed AdwStatusPage
background
This commit is contained in:
parent
76538fbf7d
commit
3d5cf4a8f7
1 changed files with 7 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue