36 lines
810 B
TypeScript
36 lines
810 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const InputStyles = StyleSheet.create({
|
|
inputRoundForm: {
|
|
borderRadius: 12,
|
|
borderColor: '#d6d8f6',
|
|
borderWidth: 1,
|
|
paddingVertical: 10,
|
|
paddingHorizontal: 15,
|
|
},
|
|
inputRoundFormLeft: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
paddingVertical: 0,
|
|
},
|
|
inputRoundFormRight: {
|
|
flexDirection: 'row-reverse',
|
|
alignItems: 'center',
|
|
paddingVertical: 0,
|
|
justifyContent: 'space-between',
|
|
},
|
|
verificationCell: {
|
|
width: 50,
|
|
height: 50,
|
|
lineHeight: 45,
|
|
fontSize: 24,
|
|
borderWidth: 1,
|
|
borderRadius: 12,
|
|
borderColor: 'gray',
|
|
textAlign: 'center',
|
|
},
|
|
verificationFocusCell: { borderColor: '#19345E' },
|
|
});
|
|
|
|
export default InputStyles;
|