style(next): fix gutter background color in mica

This commit is contained in:
Elian Doran 2024-12-07 01:17:17 +02:00
parent d35da72505
commit 3ceba62dbe
No known key found for this signature in database
2 changed files with 5 additions and 0 deletions

View File

@ -124,6 +124,7 @@ export default class DesktopLayout {
.optChild(launcherPaneIsHorizontal, launcherPane)
.child(new FlexContainer('row')
.css("flex-grow", "1")
.id("horizontal-main-container")
.optChild(!launcherPaneIsHorizontal, launcherPane)
.child(new LeftPaneContainer()
.optChild(!launcherPaneIsHorizontal, new QuickSearchWidget())

View File

@ -424,6 +424,10 @@ body.background-effects #launcher-pane .launcher-button {
background-color: transparent;
}
body.background-effects #horizontal-main-container {
background-color: var(--root-background);
}
/* Matches when the left pane is collapsed */
:has(#left-pane.hidden-int) {
--center-pane-border-radius: 0;