Skip to content

Commit

Permalink
fix: fixed title cut off on larger resolutions
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0trpietruszewski committed Sep 25, 2020
1 parent a752672 commit 3daad83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/expo/src/constants/screenStyles.js
Expand Up @@ -59,7 +59,7 @@ const screenStyles = StyleSheet.create({
message: {
color: colors.white,
fontSize: constants.responsiveWidth(11),
lineHeight: 48,
lineHeight: constants.responsiveWidth(11) * 1.2,
letterSpacing: -1,
fontFamily: 'AvertaStd-Semibold',
},
Expand Down
2 changes: 1 addition & 1 deletion examples/reactNative/src/constants/screenStyles.js
Expand Up @@ -59,7 +59,7 @@ const screenStyles = StyleSheet.create({
message: {
color: colors.white,
fontSize: constants.responsiveWidth(11),
lineHeight: 48,
lineHeight: constants.responsiveWidth(11) * 1.2,
letterSpacing: -1,
fontFamily: 'AvertaStd-Semibold',
},
Expand Down
2 changes: 1 addition & 1 deletion src/constants/screenStyles.js
Expand Up @@ -51,7 +51,7 @@ const screenStyles = StyleSheet.create({
message: {
color: colors.white,
fontSize: constants.responsiveWidth(11),
lineHeight: 48,
lineHeight: constants.responsiveWidth(11) * 1.2,
letterSpacing: -1,
},
messageContainer: {
Expand Down

0 comments on commit 3daad83

Please sign in to comment.