Skip to content

Commit

Permalink
style(Homeworks): update text color for completed items
Browse files Browse the repository at this point in the history
  • Loading branch information
Cleboost committed Nov 22, 2024
1 parent cd09f54 commit 047f58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/account/Homeworks/Atoms/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const HomeworkItem = ({ homework, navigation, onDonePressHandler, index, total }

const stylesText = StyleSheet.create({
body: {
color: theme.colors.text,
color: homework.done ? theme.colors.text + "80" : theme.colors.text,
fontFamily: "medium",
fontSize: 16,
lineHeight: 22,
Expand Down

0 comments on commit 047f58a

Please sign in to comment.