fix: responsive balance text

This commit is contained in:
poka 2022-05-26 02:35:29 +02:00
parent a6c9947b32
commit 6cbe5b2fd6
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ Widget balance(BuildContext context, String address, double size) {
return Text(
balanceCache[address]!,
style: TextStyle(
fontSize: isTall ? size : 18,
fontSize: isTall ? size : size * 0.9,
),
);
});