Skip to content

Commit c3ab817

Browse files
committed
fix: Wallpaper overlay was too dark
In recent cozy-ui updates we did some changes on Layout components and the background-color: white was not applied to the correct component anymore.
1 parent 542ac81 commit c3ab817

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/containers/App.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ const App = () => {
104104
}
105105

106106
return (
107-
<Layout monoColumn>
107+
// u-bg-white avoids mix-blend-mode from home-custom-background to be linked to the background color of the body. Must not be responsive to the theme.
108+
<Layout monoColumn className="u-bg-white">
108109
<BarComponent
109110
searchOptions={{ enabled: false }}
110111
componentsProps={{

src/styles/app.styl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ body
2424
overflow auto
2525

2626
.App
27-
// Avoid mix-blend-mode from home-custom-background to be linked to the background color of the body.
28-
// Must not be responsive to the theme.
29-
background-color white
3027
overflow-y overlay
3128

3229
&.custom-wallpaper

0 commit comments

Comments
 (0)