text styles clean up

This commit is contained in:
julian 2023-03-17 08:53:31 -06:00
parent 5223613a80
commit 36d175bcb4
3 changed files with 70 additions and 2034 deletions

View file

@ -861,9 +861,8 @@ class _SendViewState extends ConsumerState<SendView> {
locale: locale,
decimalPlaces: 2,
)} ${ref.watch(prefsChangeNotifierProvider.select((value) => value.currency))}",
style: STextStyles
.titleBold12_400(
context)
style: STextStyles.subtitle(
context)
.copyWith(
fontSize: 8,
),

File diff suppressed because it is too large Load diff

View file

@ -224,8 +224,7 @@ class _TransactionCardState extends ConsumerState<TransactionCard> {
final amount = _transaction.amount;
return Text(
"$prefix${Format.satoshiAmountToPrettyString(amount, locale, coin)} ${coin.ticker}",
style:
STextStyles.itemSubtitle12_600(context),
style: STextStyles.itemSubtitle12(context),
);
},
),