We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 829580f commit b047d75Copy full SHA for b047d75
static/app/components/layouts/thirds.tsx
@@ -38,7 +38,12 @@ export const Header = styled('header')<{
38
p.noActionWrap ? 'minmax(0, 1fr) auto' : 'minmax(0, 1fr)'};
39
40
padding: ${space(2)} ${space(2)} 0 ${space(2)};
41
- background-color: ${p => (p.unified ? p.theme.background : 'transparent')};
+ background-color: ${p =>
42
+ p.theme.isChonk
43
+ ? p.theme.background
44
+ : p.unified
45
46
+ : 'transparent'};
47
48
${p =>
49
!p.unified &&
0 commit comments