2022-03-30 13:54:03 +00:00
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
container: {
|
|
|
|
backgroundColor: BaseTheme.palette.ui01,
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
|
|
|
|
clearableInput: {
|
|
|
|
wrapper: {
|
|
|
|
marginBottom: BaseTheme.spacing[3],
|
|
|
|
marginTop: BaseTheme.spacing[3]
|
|
|
|
},
|
|
|
|
|
2022-07-07 10:38:04 +00:00
|
|
|
input: {
|
|
|
|
textAlign: 'left'
|
|
|
|
}
|
2022-03-30 13:54:03 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
grid: {
|
|
|
|
flex: 1,
|
|
|
|
marginLeft: BaseTheme.spacing[3],
|
|
|
|
marginRight: BaseTheme.spacing[3]
|
|
|
|
},
|
|
|
|
|
|
|
|
credit: {
|
2022-06-28 14:18:00 +00:00
|
|
|
alignItems: 'center',
|
2022-03-30 13:54:03 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui01,
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
2022-06-28 14:18:00 +00:00
|
|
|
height: 56,
|
|
|
|
justifyContent: 'center',
|
|
|
|
marginBottom: BaseTheme.spacing[0],
|
|
|
|
paddingBottom: BaseTheme.spacing[4],
|
|
|
|
width: '100%'
|
2022-03-30 13:54:03 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
creditText: {
|
2022-07-07 10:38:04 +00:00
|
|
|
color: BaseTheme.palette.text01,
|
2022-03-30 13:54:03 +00:00
|
|
|
fontWeight: 'bold'
|
|
|
|
}
|
|
|
|
};
|