Skip to content

Commit

Permalink
fix: #2453 - Fix standalone app page scrolling issues on mobile (#2457)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vu Nguyen authored Aug 24, 2020
1 parent b570fa7 commit bf703b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exports[`AppHeader should match a snapshot 1`] = `
</div>
</Component>
<Component
className="flex items-center"
className="items-center"
>
<img
alt="Featured Image"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const AppHeader: React.FC<AppHeaderProps> = ({ appDetailData, buttonGroup }) =>
</div>
</div>
</GridItem>
<GridItem className="flex items-center">
<GridItem className="items-center">
<img src={featureImageSrc || featureImagePlaceHolder} alt="Featured Image" />
</GridItem>
</Grid>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ exports[`PrivateRouteWrapper should match snapshot 1`] = `
<Component
flexColumn={true}
hasPadding={true}
isPageContainer={true}
>
<Suspense
fallback={
Expand Down
2 changes: 1 addition & 1 deletion packages/marketplace/src/core/private-route-wrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const PrivateRouteWrapper: React.FunctionComponent<PrivateRouteWrapperPro
)}
*/}
<FlexContainerBasic id="app-root-container" flexColumn isScrollable>
<FlexContainerResponsive hasPadding flexColumn>
<FlexContainerResponsive hasPadding flexColumn isPageContainer>
<Suspense
fallback={
<Section>
Expand Down

0 comments on commit bf703b7

Please sign in to comment.