ordering-ui-react-native 0.16.50-release → 0.16.51-release
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -553,7 +553,7 @@ const BusinessesListingUI = (props: BusinessesListingParams) => {
|
|
|
553
553
|
</>
|
|
554
554
|
)}
|
|
555
555
|
<View style={{ height: 8, backgroundColor: theme.colors.backgroundGray100 }} />
|
|
556
|
-
<ListWrapper
|
|
556
|
+
<ListWrapper style={{ paddingHorizontal: isChewLayout ? 20 : 40 }}>
|
|
557
557
|
{!businessId && (
|
|
558
558
|
<BusinessTypeFilter
|
|
559
559
|
images={props.images}
|
|
@@ -67,7 +67,6 @@ export const HeaderWrapper = styled.ImageBackground`
|
|
|
67
67
|
|
|
68
68
|
export const ListWrapper = styled.View`
|
|
69
69
|
background-color: ${(props: any) => props.theme.colors.backgroundLight};
|
|
70
|
-
padding-horizontal: ${(props: any) => props.ph ?? 40}px;
|
|
71
70
|
`;
|
|
72
71
|
|
|
73
72
|
export const FeaturedWrapper = styled.View`
|