Skip to content

Commit

Permalink
Changed font size
Browse files Browse the repository at this point in the history
  • Loading branch information
HansiWursti committed Dec 9, 2023
1 parent 2577b64 commit 6cec2bf
Showing 1 changed file with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,16 @@ export default function AccountDetails({
/>
</View>
<View>
<Label title="CLEARED" style={{ textAlign: 'center' }} />
<Label
title="CLEARED"
style={{ textAlign: 'center', fontSize: 12 }}
/>
<CellValue
binding={balanceCleared}
type="financial"
style={{
fontSize: 18,
fontSize: 12,
textAlign: 'center',
fontWeight: '500',
}}
getStyle={value => ({
Expand All @@ -161,12 +165,16 @@ export default function AccountDetails({
/>
</View>
<View>
<Label title="UNCLEARED" style={{ textAlign: 'center' }} />
<Label
title="UNCLEARED"
style={{ textAlign: 'center', fontSize: 12 }}
/>
<CellValue
binding={balanceUncleared}
type="financial"
style={{
fontSize: 18,
fontSize: 12,
textAlign: 'center',
fontWeight: '500',
}}
getStyle={value => ({
Expand Down

0 comments on commit 6cec2bf

Please sign in to comment.