paynym not found desktop style fixes

This commit is contained in:
julian 2023-01-04 13:06:07 -06:00
parent f30c82c748
commit 1e3a42fd9a

View file

@ -419,12 +419,19 @@ class _AddNewPaynymFollowViewState
),
if (_didSearch && _searchResult == null)
RoundedWhiteContainer(
borderColor: isDesktop
? Theme.of(context)
.extension<StackColors>()!
.backgroundAppBar
: null,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
"Nothing found. Please check the payment code.",
style: STextStyles.label(context),
style: isDesktop
? STextStyles.desktopTextExtraExtraSmall(context)
: STextStyles.label(context),
),
],
),