Skip to content

Commit

Permalink
chore: ui improvements (#674)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Williams <[email protected]>
  • Loading branch information
alcpereira and dannyhw authored Jan 30, 2025
1 parent 2d73f40 commit 7f1ef78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react-native-ui/src/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ const Nav = styled.View({
justifyContent: 'space-between',
width: '100%',
height: 40,
paddingHorizontal: 12,
paddingHorizontal: 6,
});

const Container = styled.View(({ theme }) => ({
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-ui/src/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const Input = styled(TextInput)(({ theme }) => ({
borderWidth: 1,
borderColor: theme.appBorderColor,
backgroundColor: 'transparent',
borderRadius: 4,
borderRadius: 6,
fontSize: theme.typography.size.s1 + 1,
color: theme.color.defaultText,
width: '100%',
Expand Down
1 change: 1 addition & 0 deletions packages/react-native-ui/src/TreeNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ const LeafNode = styled.TouchableOpacity<{ depth?: number; selected?: boolean }>
const LeafNodeText = styled.Text<{ depth?: number; selected?: boolean }>(({ theme, selected }) => ({
fontSize: theme.typography.size.s2,
flexShrink: 1,
fontWeight: selected ? 'bold' : 'normal',
color: selected ? theme.color.lightest : theme.color.defaultText,
}));

Expand Down

0 comments on commit 7f1ef78

Please sign in to comment.