Skip to content

Commit f4789bb

Browse files
Merge pull request OwnTube-tv#461 from OwnTube-tv/feature/auth-info-wrap-fix
Fix alignment on settings auth info
2 parents 9ede059 + 377783f commit f4789bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

OwnTube.tv/components/DeviceCapabilities/DeviceCapabilities.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const CapabilityKeyValuePair = ({ label, value }: { label: string; value: string
2121
<Typography color={colors.themeDesaturated500} fontSize="sizeXS" fontWeight="Medium">
2222
{label}
2323
</Typography>
24-
<Typography color={colors.themeDesaturated500} fontSize="sizeXS" fontWeight="Medium">
24+
<Typography style={styles.row} color={colors.themeDesaturated500} fontSize="sizeXS" fontWeight="Medium">
2525
{value}
2626
</Typography>
2727
</View>
@@ -168,7 +168,7 @@ const styles = StyleSheet.create({
168168
capabilitiesContainer: {
169169
gap: 8,
170170
},
171-
iconButton: { height: 36, paddingHorizontal: spacing.sm },
171+
iconButton: { height: 36, paddingHorizontal: spacing.sm, paddingVertical: 6 },
172172
modalHeader: { flexDirection: "row", gap: 16, justifyContent: "space-between" },
173173
row: { flexWrap: "wrap", justifyContent: "space-between", width: "100%" },
174174
});

0 commit comments

Comments
 (0)