Flatten theme styles by eliminating top-level ui key

Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
Co-Authored-By: Antonio Scandurra <me@as-cii.com>
This commit is contained in:
Nathan Sobo 2021-08-20 10:44:34 -06:00
parent 9b7756f566
commit 9ff764983d
6 changed files with 24 additions and 25 deletions

View file

@ -885,7 +885,7 @@ impl View for Workspace {
.with_children(self.modal.as_ref().map(|m| ChildView::new(m.id()).boxed()))
.boxed(),
)
.with_background_color(settings.theme.ui.background)
.with_background_color(settings.theme.workspace.background)
.named("workspace")
}