Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the Switch to Dark Mode #12944

Merged
merged 7 commits into from
Nov 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Checkmark to green / remove icon when unchecked.
  • Loading branch information
grgia committed Nov 22, 2022
commit eca7e24bb0fb8a34dfba43d13129ecd8e440418d
2 changes: 1 addition & 1 deletion src/components/Checkbox.js
Original file line number Diff line number Diff line change
@@ -113,7 +113,7 @@ class Checkbox extends React.Component {
this.state.isFocused && styles.borderColorFocus,
]}
>
<Icon src={Expensicons.Checkmark} fill={this.props.isChecked ? themeColors.textLight : themeColors.transparent} height={14} width={14} />
{this.props.isChecked && <Icon src={Expensicons.Checkmark} fill={themeColors.textLight} height={14} width={14} />}
</View>
)}
</Pressable>
2 changes: 1 addition & 1 deletion src/styles/styles.js
Original file line number Diff line number Diff line change
@@ -2150,7 +2150,7 @@ const styles = {
},

checkedContainer: {
backgroundColor: themeColors.link,
backgroundColor: themeColors.success,
},

iouAmountText: {