style(git-diff): remove bold from line counts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Mohamed Boudra
2026-01-06 09:37:06 +07:00
parent 607decff84
commit 4c8a79f288

View File

@@ -323,13 +323,13 @@ const styles = StyleSheet.create((theme) => ({
},
additions: {
fontSize: theme.fontSize.sm,
fontWeight: theme.fontWeight.semibold,
fontWeight: theme.fontWeight.normal,
color: theme.colors.palette.green[400],
fontFamily: "monospace",
},
deletions: {
fontSize: theme.fontSize.sm,
fontWeight: theme.fontWeight.semibold,
fontWeight: theme.fontWeight.normal,
color: theme.colors.palette.red[500],
fontFamily: "monospace",
},