[IMPROVE] Add missing borders styles changes (#4675)
This commit is contained in:
parent
303bdd38ae
commit
5992129599
|
@ -122,7 +122,6 @@ const ActionSheetContentWithInputAndSubmit = ({
|
||||||
}}
|
}}
|
||||||
testID={testID}
|
testID={testID}
|
||||||
secureTextEntry={secureTextEntry}
|
secureTextEntry={secureTextEntry}
|
||||||
inputStyle={{ borderWidth: 2 }}
|
|
||||||
bottomSheet={isIOS}
|
bottomSheet={isIOS}
|
||||||
/>
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
|
@ -19,8 +19,8 @@ const styles = StyleSheet.create({
|
||||||
input: {
|
input: {
|
||||||
height: 48,
|
height: 48,
|
||||||
paddingLeft: 16,
|
paddingLeft: 16,
|
||||||
borderWidth: 2,
|
borderWidth: 1,
|
||||||
borderRadius: 2,
|
borderRadius: 4,
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
flexDirection: 'row'
|
flexDirection: 'row'
|
||||||
},
|
},
|
||||||
|
|
|
@ -19,8 +19,8 @@ const styles = StyleSheet.create({
|
||||||
viewContainer: {
|
viewContainer: {
|
||||||
marginBottom: 16,
|
marginBottom: 16,
|
||||||
paddingHorizontal: 16,
|
paddingHorizontal: 16,
|
||||||
borderWidth: 2,
|
borderWidth: 1,
|
||||||
borderRadius: 2,
|
borderRadius: 4,
|
||||||
justifyContent: 'center'
|
justifyContent: 'center'
|
||||||
},
|
},
|
||||||
pickerText: {
|
pickerText: {
|
||||||
|
|
|
@ -102,7 +102,7 @@ const CloseLivechatView = ({ navigation, route }: IBaseScreen<ChatsStackParamLis
|
||||||
value={tagParamSelected}
|
value={tagParamSelected}
|
||||||
context={BlockContext.FORM}
|
context={BlockContext.FORM}
|
||||||
multiselect
|
multiselect
|
||||||
inputStyle={{ borderColor: colors.separatorColor, borderWidth: 2 }}
|
inputStyle={{ borderColor: colors.separatorColor }}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
|
@ -8,7 +8,7 @@ export default StyleSheet.create({
|
||||||
...sharedStyles.textAlignCenter
|
...sharedStyles.textAlignCenter
|
||||||
},
|
},
|
||||||
buttonInverted: {
|
buttonInverted: {
|
||||||
borderWidth: 2,
|
borderWidth: 1,
|
||||||
borderRadius: 4
|
borderRadius: 4
|
||||||
},
|
},
|
||||||
buttonContainerDisabled: {
|
buttonContainerDisabled: {
|
||||||
|
@ -30,7 +30,7 @@ export default StyleSheet.create({
|
||||||
borderRadius: 4
|
borderRadius: 4
|
||||||
},
|
},
|
||||||
buttonDanger: {
|
buttonDanger: {
|
||||||
borderWidth: 2,
|
borderWidth: 1,
|
||||||
borderRadius: 4
|
borderRadius: 4
|
||||||
},
|
},
|
||||||
switchContainer: {
|
switchContainer: {
|
||||||
|
|
Loading…
Reference in New Issue