Skip to content

Commit

Permalink
fix: 🐛 Corrige l'affichage des textes en Bold sur Android (#171)
Browse files Browse the repository at this point in the history
* fix: 🐛 Corrige l'affichage des textes en Bold sur Android

* fix: 🐛 Corrige l'affichage des textes en Bold sur Android
  • Loading branch information
benguedj authored Apr 29, 2021
1 parent 5afb1f6 commit c2416d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions front/components/BackButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const styles = StyleSheet.create({
font: {
fontFamily: getFontFamilyName(FontNames.comfortaa, FontWeight.bold),
fontSize: 14,
fontWeight: FontWeight.normal,
},
});

Expand Down
1 change: 1 addition & 0 deletions front/components/form/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const styles = StyleSheet.create({
font: {
fontFamily: getFontFamilyName(FontNames.comfortaa, FontWeight.bold),
fontSize: 17,
fontWeight: FontWeight.normal,
},
roundedButton: {
backgroundColor: Colors.primaryBlue,
Expand Down
3 changes: 2 additions & 1 deletion front/components/form/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ const styles = StyleSheet.create({
},
label: {
color: Colors.primaryBlueDark,
fontFamily: getFontFamilyName(FontNames.comfortaa, FontWeight.normal),
fontFamily: getFontFamilyName(FontNames.comfortaa, FontWeight.bold),
fontSize: 11,
fontWeight: FontWeight.normal,
},
labelSelected: {
color: Colors.secondaryGreen,
Expand Down

0 comments on commit c2416d1

Please sign in to comment.