Revert "fix: text ui scaling"

This reverts commit 9c0de94247.
This commit is contained in:
Lance Chant
2026-02-13 16:30:36 +02:00
committed by Gauvain
parent 719c875293
commit ce1e1dfc77
14 changed files with 27 additions and 70 deletions

View File

@@ -19,9 +19,7 @@ export const SectionHeader: React.FC<Props> = ({
return (
<View className='px-4 flex flex-row items-center justify-between mb-2'>
<Text className='text-lg font-bold text-neutral-100' ellipsizeMode='tail'>
{title}
</Text>
<Text className='text-lg font-bold text-neutral-100'>{title}</Text>
{shouldShowAction && (
<TouchableOpacity
onPress={onPressAction}
@@ -31,7 +29,6 @@ export const SectionHeader: React.FC<Props> = ({
className='py-1 pl-3'
>
<Text
ellipsizeMode='tail'
style={{
color: actionDisabled ? "rgba(255,255,255,0.4)" : Colors.primary,
}}