File tree 3 files changed +3
-2
lines changed
packages/react-native-ui/src
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ const Nav = styled.View({
289
289
justifyContent : 'space-between' ,
290
290
width : '100%' ,
291
291
height : 40 ,
292
- paddingHorizontal : 12 ,
292
+ paddingHorizontal : 6 ,
293
293
} ) ;
294
294
295
295
const Container = styled . View ( ( { theme } ) => ( {
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ const Input = styled(TextInput)(({ theme }) => ({
79
79
borderWidth : 1 ,
80
80
borderColor : theme . appBorderColor ,
81
81
backgroundColor : 'transparent' ,
82
- borderRadius : 4 ,
82
+ borderRadius : 6 ,
83
83
fontSize : theme . typography . size . s1 + 1 ,
84
84
color : theme . color . defaultText ,
85
85
width : '100%' ,
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ const LeafNode = styled.TouchableOpacity<{ depth?: number; selected?: boolean }>
74
74
const LeafNodeText = styled . Text < { depth ?: number ; selected ?: boolean } > ( ( { theme, selected } ) => ( {
75
75
fontSize : theme . typography . size . s2 ,
76
76
flexShrink : 1 ,
77
+ fontWeight : selected ? 'bold' : 'normal' ,
77
78
color : selected ? theme . color . lightest : theme . color . defaultText ,
78
79
} ) ) ;
79
80
You can’t perform that action at this time.
0 commit comments