remove default bg from PageHeader

This commit is contained in:
jeffvli
2025-11-22 14:37:35 -08:00
parent 73551847fb
commit 59cdc66355
6 changed files with 8 additions and 8 deletions
@@ -37,7 +37,7 @@ const variants: Variants = {
export const PageHeader = ({
animated,
backgroundColor = 'var(--theme-colors-background)',
backgroundColor,
children,
height,
isHidden,
@@ -134,8 +134,8 @@ export const PageHeader = ({
/>
<div
className={clsx(styles.backgroundImageOverlay, {
[styles.dark]: mode === 'dark',
[styles.light]: mode === 'light',
[styles.dark]: backgroundColor && mode === 'dark',
[styles.light]: backgroundColor && mode === 'light',
})}
/>
</>