Skip to content

Commit

Permalink
Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
rickycodes committed Mar 25, 2021
1 parent 34beba3 commit e283439
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
10 changes: 9 additions & 1 deletion app/components/Views/Login/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ const styles = StyleSheet.create({
flexDirection: 'column'
},
label: {
fontSize: 14,
color: colors.black,
fontSize: 16,
marginBottom: 12,
...fontStyles.normal
},
Expand Down Expand Up @@ -114,11 +115,17 @@ const styles = StyleSheet.create({
biometryLabel: {
flex: 1,
fontSize: 16,
color: colors.black,
...fontStyles.normal
},
biometrySwitch: {
flex: 0
},
input: {
...fontStyles.normal,
fontSize: 16,
paddingTop: 2
},
cant: {
width: 280,
alignSelf: 'center',
Expand Down Expand Up @@ -477,6 +484,7 @@ class Login extends PureComponent {
<View style={styles.areYouSure}>
<Text style={[styles.heading, styles.delete]}>{strings('login.type_delete')}</Text>
<OutlinedTextField
style={styles.input}
autoFocus
returnKeyType={'done'}
onChangeText={this.checkDelete}
Expand Down
8 changes: 5 additions & 3 deletions app/components/Views/SendFlow/Amount/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ const styles = StyleSheet.create({
flex: 0.8
},
actionDropdown: {
...fontStyles.normal,
backgroundColor: colors.blue,
paddingHorizontal: 16,
paddingVertical: 2,
Expand Down Expand Up @@ -131,7 +132,7 @@ const styles = StyleSheet.create({
flexDirection: 'row'
},
inputCurrencyText: {
fontFamily: 'Roboto-Light',
...fontStyles.normal,
fontWeight: fontStyles.light.fontWeight,
color: colors.black,
fontSize: 44,
Expand All @@ -142,10 +143,11 @@ const styles = StyleSheet.create({
textTransform: 'uppercase'
},
textInput: {
fontFamily: 'Roboto-Light',
...fontStyles.normal,
fontWeight: fontStyles.light.fontWeight,
fontSize: 44,
textAlign: 'center'
textAlign: 'center',
color: colors.black
},
switch: {
flex: 1,
Expand Down
2 changes: 1 addition & 1 deletion app/components/Views/SendFlow/Confirm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const styles = StyleSheet.create({
marginVertical: 3
},
textAmount: {
fontFamily: 'Roboto-Light',
...fontStyles.normal,
fontWeight: fontStyles.light.fontWeight,
color: colors.black,
fontSize: 44,
Expand Down
2 changes: 1 addition & 1 deletion app/styles/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const colors = {
fontError: '#D73A49',
fontWarning: '#f66a0a',
primaryFox: '#f66a0a',
black: '#000000',
black: '#24292E',
white: '#FFFFFF',
white100: '#F9FAFB',
grey450: '#8E8E93',
Expand Down

0 comments on commit e283439

Please sign in to comment.