Skip to content

Commit

Permalink
Merge pull request #925 from ambrosus/AMB_5191
Browse files Browse the repository at this point in the history
ui change background color
  • Loading branch information
EvgeniyJB authored Jan 3, 2025
2 parents 719e48b + d9c4372 commit cefe269
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { scale } from '@utils';

export const styles = StyleSheet.create({
container: {
...contentBox
...contentBox,
backgroundColor: COLORS.neutral0
},
textStyle: {
color: COLORS.neutral900,
Expand Down
4 changes: 3 additions & 1 deletion src/screens/Harbor/ProcessStake/styles.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import { StyleSheet } from 'react-native';
import { COLORS } from '@constants/colors';
import { scale } from '@utils';

export const styles = StyleSheet.create({
main: { height: '100%' },
wrapper: {
paddingHorizontal: scale(12),
justifyContent: 'space-between'
justifyContent: 'space-between',
backgroundColor: COLORS.neutral50
},
stakeInfoText: {
paddingHorizontal: scale(2),
Expand Down
4 changes: 3 additions & 1 deletion src/screens/Harbor/WithdrawHarborScreen/styles.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { StyleSheet } from 'react-native';
import { COLORS } from '@constants/colors';

export const styles = StyleSheet.create({
main: {
height: '100%'
height: '100%',
backgroundColor: COLORS.neutral50
},
container: {
justifyContent: 'space-between'
Expand Down

0 comments on commit cefe269

Please sign in to comment.