We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120b437 commit 6d35250Copy full SHA for 6d35250
src/trustBadge/Capsule/index.tsx
@@ -1,5 +1,5 @@
1
import React, { type FC, type ReactNode } from 'react';
2
-import { View, StyleSheet, Text } from 'react-native';
+import { Platform, View, StyleSheet, Text } from 'react-native';
3
import { useScaled } from '../../hooks/useScaled';
4
5
export const defaultHeight = 32;
@@ -48,8 +48,9 @@ const styles = StyleSheet.create({
48
},
49
chevron: {
50
color: '#0A3942',
51
- fontSize: 26,
52
- marginTop: -4,
+ fontSize: Platform.OS === 'ios' ? 24 : 14,
+ marginTop: Platform.OS === 'ios' ? -4 : -8,
53
paddingHorizontal: 4,
54
+ ...(Platform.OS === 'android' && { transform: 'scale(2)' }),
55
56
});
0 commit comments