TF-750 Fix padding overflow for autocomplete advanced search

This commit is contained in:
dab246
2022-07-25 14:04:03 +07:00
committed by Dat H. Pham
parent 8e71d8d8e6
commit c8b94f9e8e
2 changed files with 88 additions and 40 deletions
@@ -129,7 +129,9 @@ class ResponsiveUtils {
if (BuildUtils.isWeb) {
return isTabletLarge(context);
} else {
return isLandscapeTablet(context);
return !isLandscapeMobile(context) && (isLandscapeTablet(context) ||
isTabletLarge(context) ||
isDesktop(context));
}
}
}