Skip to content

Commit

Permalink
fix: small divider bug (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
in-mai-space authored Nov 8, 2024
1 parent 1635536 commit 40639ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/divider.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { View } from 'react-native';

const Divider = () => {
return <View className="h-[0.5%] bg-water w-full"></View>;
return <View className="h-[0.8px] bg-water w-full"></View>;
};

export default Divider;

0 comments on commit 40639ff

Please sign in to comment.