Skip to content

Commit

Permalink
Various style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 committed Mar 27, 2024
1 parent 3aeb431 commit 78e8466
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/(tabs)/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function HomeScreen() {
contentContainerStyle={{ paddingHorizontal: 8 }}
>
<View style={styles.headerContainer}>
<Text style={globalStyles.h2}>
<Text style={globalStyles.h1}>
{username ? `Welcome, ${username}` : 'Welcome!'}
</Text>
<Pressable onPress={() => router.push('/settings')}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserSelectorInput/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default StyleSheet.create({
marginBottom: 8,
},
dropdown: {
height: 43,
height: 44,
borderWidth: 1,
borderRadius: 5,
paddingHorizontal: 10,
Expand Down
4 changes: 2 additions & 2 deletions src/components/UserStringInput/UserStringInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default function UserStringInput({
label,
children,
labelColor = '#000',
placeholderTextColor = '#000',
onChange = _ => {},
placeholderTextColor = colors.darkGrey,
onChange = _ => { },
}: UserStringInputProps) {
return (
<View style={styles.mt16}>
Expand Down

0 comments on commit 78e8466

Please sign in to comment.