diff options
Diffstat (limited to 'packages/mobile/components')
| -rw-r--r-- | packages/mobile/components/Logo.tsx | 2 | ||||
| -rw-r--r-- | packages/mobile/components/ui/Input.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/mobile/components/Logo.tsx b/packages/mobile/components/Logo.tsx index a15d8561..57f7a5c3 100644 --- a/packages/mobile/components/Logo.tsx +++ b/packages/mobile/components/Logo.tsx @@ -3,7 +3,7 @@ import { View, Text } from "react-native"; export default function Logo() { return ( - <View className="flex flex-row gap-2 justify-center items-center "> + <View className="flex flex-row items-center justify-center gap-2 "> <PackageOpen color="black" size={70} /> <Text className="text-5xl">Hoarder</Text> </View> diff --git a/packages/mobile/components/ui/Input.tsx b/packages/mobile/components/ui/Input.tsx index 6fc90b8f..2fcb2764 100644 --- a/packages/mobile/components/ui/Input.tsx +++ b/packages/mobile/components/ui/Input.tsx @@ -17,7 +17,7 @@ const Input = forwardRef<React.ElementRef<typeof TextInput>, InputProps>( <TextInput className={cn( inputClasses, - "border border-input py-2.5 px-4 rounded-lg", + "border-input rounded-lg border px-4 py-2.5", )} {...props} /> |
