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) if (_didSearch && _searchResult == null)
RoundedWhiteContainer( RoundedWhiteContainer(
borderColor: isDesktop
? Theme.of(context)
.extension<StackColors>()!
.backgroundAppBar
: null,
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
Text( Text(
"Nothing found. Please check the payment code.", "Nothing found. Please check the payment code.",
style: STextStyles.label(context), style: isDesktop
? STextStyles.desktopTextExtraExtraSmall(context)
: STextStyles.label(context),
), ),
], ],
), ),