Skip to content

Commit

Permalink
Merge pull request #180 from QUACK-INTEC/cr/BugFix/Avatar_Font_Size
Browse files Browse the repository at this point in the history
Cambio de font en Avatar
  • Loading branch information
jtvargas authored Jan 15, 2020
2 parents 58a7472 + a079a67 commit a4eff6c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions App/Components/Common/Avatar/Avatar.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ class Avatar extends React.Component {

const styles = StyleSheet.create({
avatarStyle: {
height: toBaseDesignPx(94),
width: toBaseDesignPx(94),
borderRadius: toBaseDesignPx(47),
height: toBaseDesignPx(110),
width: toBaseDesignPx(110),
borderRadius: toBaseDesignPx(100),
backgroundColor: colors.GRAY_LIGHT,
alignItems: 'center',
justifyContent: 'center',
},
textViewStyle: {
width: toBaseDesignPx(94),
height: toBaseDesignPx(94),
width: toBaseDesignPx(110),
height: toBaseDesignPx(110),
alignItems: 'center',
justifyContent: 'center',
...spacers.MR_0,
Expand All @@ -55,7 +55,7 @@ const styles = StyleSheet.create({
},
textStyle: {
color: colors.GRAY,
fontSize: RFValue(48),
fontSize: RFValue(40),
textAlign: 'center',
...spacers.ML_1,
...spacers.MT_1,
Expand Down
6 changes: 3 additions & 3 deletions App/Components/EventCalendar/EventCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ const styles = StyleSheet.create({
color: colors.GRAY,
},
avatarStyle: {
height: toBaseDesignPx(16),
width: toBaseDesignPx(16),
borderRadius: toBaseDesignPx(8),
height: toBaseDesignPx(32),
width: toBaseDesignPx(32),
borderRadius: toBaseDesignPx(32),
...spacers.MR_1,
},
authorStyle: {
Expand Down
4 changes: 2 additions & 2 deletions App/Components/ParticipantCard/ParticipantCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const styles = StyleSheet.create({
avatarStyle: {
height: toBaseDesignPx(32),
width: toBaseDesignPx(32),
borderRadius: toBaseDesignPx(16),
borderRadius: toBaseDesignPx(32),
...spacers.MR_8,
...spacers.ML_8,
},
Expand All @@ -74,7 +74,7 @@ const styles = StyleSheet.create({
height: toBaseDesignPx(12),
},
avatarTextStyle: {
...fonts.SIZE_XL,
...fonts.SIZE_XS,
},
buttonStyle: {
borderRadius: toBaseDesignPx(4),
Expand Down
4 changes: 2 additions & 2 deletions App/Components/PostComment/PostComment.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const styles = StyleSheet.create({
avatarStyle: {
height: toBaseDesignPx(32),
width: toBaseDesignPx(32),
borderRadius: toBaseDesignPx(16),
borderRadius: toBaseDesignPx(32),
...spacers.MR_8,
...spacers.ML_4,
},
Expand All @@ -151,7 +151,7 @@ const styles = StyleSheet.create({
height: toBaseDesignPx(8),
},
avatarTextStyle: {
...fonts.SIZE_XL,
...fonts.SIZE_XS,
},
divBar: {
width: toBaseDesignPx(0),
Expand Down
4 changes: 2 additions & 2 deletions App/Components/PostInfo/PostInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ const styles = StyleSheet.create({
avatarStyle: {
height: toBaseDesignPx(32),
width: toBaseDesignPx(32),
borderRadius: toBaseDesignPx(16),
borderRadius: toBaseDesignPx(32),
},
authorStyle: {
...fonts.SIZE_XS,
Expand All @@ -385,7 +385,7 @@ const styles = StyleSheet.create({
...spacers.ML_1,
},
avatarTextStyle: {
...fonts.SIZE_XL,
...fonts.SIZE_XS,
},
upVotesStyle: {
color: colors.GRAY_LIGHT,
Expand Down

0 comments on commit a4eff6c

Please sign in to comment.