Skip to content

Commit

Permalink
Fix regression of missing background image in game page
Browse files Browse the repository at this point in the history
  • Loading branch information
arielj committed Nov 26, 2023
1 parent 177d480 commit 26e9e15
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/frontend/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ body {
grid-area: content;
flex-direction: column;
min-height: 100%;
background: var(--gradient-body-background, var(--body-background));
&:not(:has(.gameConfigContainer img.backgroundImage)) {
background: var(--gradient-body-background, var(--body-background));
}
}

.App .content .UpdateComponent--topLevel {
Expand Down

0 comments on commit 26e9e15

Please sign in to comment.