tweak badge

This commit is contained in:
Samuel Newman
2026-02-02 12:04:03 -06:00
parent cd5cd02535
commit abd00d5722
@@ -58,7 +58,7 @@ export function GifPresentationControls({
/> />
)} )}
<View style={styles.gifBadgeContainer}> <View style={styles.gifBadgeContainer}>
<Text style={styles.gifBadge}> <Text style={[{color: 'white'}, a.font_bold, a.text_xs]}>
<Trans>GIF</Trans> <Trans>GIF</Trans>
</Text> </Text>
</View> </View>
@@ -70,16 +70,11 @@ const styles = StyleSheet.create({
gifBadgeContainer: { gifBadgeContainer: {
backgroundColor: 'rgba(0, 0, 0, 0.75)', backgroundColor: 'rgba(0, 0, 0, 0.75)',
borderRadius: 6, borderRadius: 6,
paddingHorizontal: 6, paddingHorizontal: 4,
paddingVertical: 3, paddingVertical: 3,
position: 'absolute', position: 'absolute',
right: 5, left: 6,
bottom: 5, bottom: 6,
zIndex: 2, zIndex: 2,
}, },
gifBadge: {
color: 'white',
fontSize: 7,
fontWeight: '600',
},
}) })