Fix AppBar background colors

This commit is contained in:
Bill Thornton
2025-05-19 11:07:08 -04:00
parent e2a2283052
commit 8fc680f106
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ const ElevationScroll = ({ children, elevate = false }: { children: ReactElement
const isElevated = elevate || trigger;
return React.cloneElement(children, {
color: isElevated ? 'primary' : 'transparent',
color: isElevated ? 'default' : 'transparent',
elevation: isElevated ? 4 : 0
});
};