Skip to content

Commit 24f49b4

Browse files
committed
fix: replace padding horizontal and vertical
1 parent 08c63bd commit 24f49b4

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

packages/uikit-react-native-foundation/src/ui/Prompt/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const Prompt = ({
9898
variant={'underline'}
9999
value={text}
100100
onChangeText={setText}
101-
style={{ paddingHorizontal: 0, paddingVertical: 10 }}
101+
style={{ paddingLeft: 0, paddingRight: 0, paddingTop: 10, paddingBottom: 10 }}
102102
/>
103103
</View>
104104

packages/uikit-react-native/src/domain/messageSearch/component/MessageSearchHeader.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ const styles = createStyleSheet({
9191
flex: 1,
9292
height: '100%',
9393
fontSize: 14,
94-
padding: 0,
94+
paddingLeft: 0,
95+
paddingTop: 0,
96+
paddingBottom: 0,
97+
paddingRight: 0,
9598
},
9699
});
97100

packages/uikit-react-native/src/domain/openChannelCreate/component/OpenChannelCreateProfileInput.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,10 @@ const styles = createStyleSheet({
142142
},
143143
input: {
144144
flex: 1,
145-
paddingVertical: 0,
146-
paddingHorizontal: 0,
145+
paddingLeft: 0,
146+
paddingRight: 0,
147+
paddingTop: 0,
148+
paddingBottom: 0,
147149
},
148150
removeButtonContainer: {
149151
alignItems: 'flex-end',

0 commit comments

Comments
 (0)