diff --git a/app/containers/ActionSheet/ActionSheetContentWithInputAndSubmit/index.tsx b/app/containers/ActionSheet/ActionSheetContentWithInputAndSubmit/index.tsx index b3562c484..a32f27fc9 100644 --- a/app/containers/ActionSheet/ActionSheetContentWithInputAndSubmit/index.tsx +++ b/app/containers/ActionSheet/ActionSheetContentWithInputAndSubmit/index.tsx @@ -122,7 +122,6 @@ const ActionSheetContentWithInputAndSubmit = ({ }} testID={testID} secureTextEntry={secureTextEntry} - inputStyle={{ borderWidth: 2 }} bottomSheet={isIOS} /> ) : null} diff --git a/app/containers/UIKit/DatePicker.tsx b/app/containers/UIKit/DatePicker.tsx index 2466393bc..eff7d6f51 100644 --- a/app/containers/UIKit/DatePicker.tsx +++ b/app/containers/UIKit/DatePicker.tsx @@ -19,8 +19,8 @@ const styles = StyleSheet.create({ input: { height: 48, paddingLeft: 16, - borderWidth: 2, - borderRadius: 2, + borderWidth: 1, + borderRadius: 4, alignItems: 'center', flexDirection: 'row' }, diff --git a/app/containers/UIKit/Select.tsx b/app/containers/UIKit/Select.tsx index 111d65bf3..b68fbc815 100644 --- a/app/containers/UIKit/Select.tsx +++ b/app/containers/UIKit/Select.tsx @@ -19,8 +19,8 @@ const styles = StyleSheet.create({ viewContainer: { marginBottom: 16, paddingHorizontal: 16, - borderWidth: 2, - borderRadius: 2, + borderWidth: 1, + borderRadius: 4, justifyContent: 'center' }, pickerText: { diff --git a/app/views/CloseLivechatView.tsx b/app/views/CloseLivechatView.tsx index feb011f2e..564f7d3ad 100644 --- a/app/views/CloseLivechatView.tsx +++ b/app/views/CloseLivechatView.tsx @@ -102,7 +102,7 @@ const CloseLivechatView = ({ navigation, route }: IBaseScreen ) : null} diff --git a/app/views/RoomInfoEditView/styles.ts b/app/views/RoomInfoEditView/styles.ts index 3af91a742..a35fa1dfc 100644 --- a/app/views/RoomInfoEditView/styles.ts +++ b/app/views/RoomInfoEditView/styles.ts @@ -8,7 +8,7 @@ export default StyleSheet.create({ ...sharedStyles.textAlignCenter }, buttonInverted: { - borderWidth: 2, + borderWidth: 1, borderRadius: 4 }, buttonContainerDisabled: { @@ -30,7 +30,7 @@ export default StyleSheet.create({ borderRadius: 4 }, buttonDanger: { - borderWidth: 2, + borderWidth: 1, borderRadius: 4 }, switchContainer: {