style(next): improve status bar on tablet mode

This commit is contained in:
Elian Doran 2025-01-04 14:23:17 +02:00
parent a1acb69976
commit a3ac2629e9
No known key found for this signature in database
2 changed files with 11 additions and 0 deletions

View File

@ -122,6 +122,7 @@ export default class MobileLayout {
)
.child(new FlexContainer("row")
.filling()
.id("mobile-rest-container")
.child(new SidebarContainer("tree", 'column')
.class("d-sm-flex d-md-flex d-lg-flex d-xl-flex col-12 col-sm-5 col-md-4 col-lg-3 col-xl-3")
.id("mobile-sidebar-wrapper")

View File

@ -19,6 +19,16 @@
background-color: var(--root-background);
}
@media (min-width: 992px) {
body.mobile #root-widget {
background-color: var(--launcher-pane-background-color);
}
body.mobile #mobile-rest-container {
background-color: var(--root-background);
}
}
body {
--native-titlebar-darwin-x-offset: 10;
--native-titlebar-darwin-y-offset: 17 !important;