fix(mobile): correct search & home-header bg color (#8835)

This commit is contained in:
CatsJuice
2024-11-15 08:19:15 +00:00
parent 54c51225ed
commit 1f71e87460
2 changed files with 2 additions and 2 deletions

View File

@@ -113,7 +113,7 @@ const WithQueryList = () => {
};
export const Component = () => {
useThemeColorV2('layer/background/secondary');
useThemeColorV2('layer/background/mobile/primary');
const searchInput = useLiveData(searchInput$);
const searchService = useService(MobileSearchService);

View File

@@ -30,7 +30,7 @@ export const float = style({
position: 'fixed',
top: 0,
width: '100%',
background: cssVarV2('layer/background/secondary'),
background: cssVarV2('layer/background/mobile/primary'),
zIndex: 1,
display: 'flex',