Skip to content

Commit

Permalink
style(HomeHeader): add white background to DrawerMenuIcon
Browse files Browse the repository at this point in the history
Adds a white background to the DrawerMenuIcon to improve visibility and contrast.
  • Loading branch information
luandro committed Dec 9, 2024
1 parent 718496c commit 32a1359
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/frontend/sharedComponents/HomeHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,15 @@ export const HomeHeader: FC<
<SyncIconCircle testID="MAIN.sync-icon" />
</IconButton>
<GPSPill navigation={navigation} />
<DrawerMenuIcon style={{marginRight: 20}} onPress={openDrawer} />
<View
style={{
backgroundColor: 'white',
borderRadius: 30,
marginRight: 20,
padding: 5,
}}>
<DrawerMenuIcon onPress={openDrawer} />
</View>
</View>
);
};
Expand Down

0 comments on commit 32a1359

Please sign in to comment.