Skip to content

Commit

Permalink
fix PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymczakJ committed Oct 11, 2024
1 parent 7587f23 commit 90e18c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Search/SearchRouter/SearchRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function SearchRouter({onRouterClose}: SearchRouterProps) {
closeAndClearRouter();
});

const modalWidth = isSmallScreenWidth ? styles.w100 : {width: variables.popoverWidth};
const modalWidth = isSmallScreenWidth ? styles.w100 : {width: variables.searchRouterPopoverWidth};

return (
<View
Expand Down
3 changes: 2 additions & 1 deletion src/styles/variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ export default {
signInLogoWidthLargeScreenPill: 162,
modalContentMaxWidth: 360,
listItemHeightNormal: 64,
popoverWidth: 512,
popoverWidth: 375,
searchRouterPopoverWidth: 512,
bankAccountActionPopoverRightSpacing: 32,
bankAccountActionPopoverTopSpacing: 14,
addPaymentPopoverRightSpacing: 23,
Expand Down

0 comments on commit 90e18c5

Please sign in to comment.