Skip to content

Commit

Permalink
ui change background colors
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgeniyJB committed Jan 3, 2025
1 parent 719e48b commit d9c4372
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 d9c4372

Please sign in to comment.