Skip to content

Commit

Permalink
chore: fix page width issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Mar 7, 2024
1 parent 0193986 commit a762019
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export function ChooseAssetContainer({ children }: HasChildren) {
<Flex
borderRadius={['unset', 'lg']}
height="fit-content"
maxWidth={['100%', 'centeredPageFullWidth']}
minWidth={['100%', 'centeredPageFullWidth']}
maxWidth={['100%', 'pageWidth']}
minWidth={['100%', 'pageWidth']}
background="ink.background-primary"
>
{children}
Expand Down
2 changes: 1 addition & 1 deletion src/app/features/add-network/add-network.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export function AddNetwork() {
<form onSubmit={handleSubmit}>
<Stack
gap="space.05"
maxWidth="centeredPageFullWidth"
maxWidth="pageWidth"
px={['space.05', 'space.04']}
textAlign={['left', 'center']}
>
Expand Down
4 changes: 2 additions & 2 deletions src/app/pages/send/send-container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export function SendContainer() {
<Flex
borderRadius={['unset', '16px']}
height="fit-content"
maxWidth={['100%', 'centeredPageFullWidth']}
minWidth={['100%', 'centeredPageFullWidth']}
maxWidth={['100%', 'pageWidth']}
minWidth={['100%', 'pageWidth']}
background="ink.background-primary"
>
<Outlet />
Expand Down
4 changes: 2 additions & 2 deletions src/app/pages/swap/components/swap-container.layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export function SwapContainerLayout({ children }: HasChildren) {
<Flex
borderRadius={['unset', '16px']}
maxHeight="90vh"
maxWidth={['100%', 'centeredPageFullWidth']}
minWidth={['100%', 'centeredPageFullWidth']}
maxWidth={['100%', 'pageWidth']}
minWidth={['100%', 'pageWidth']}
background="ink.background-primary"
>
{children}
Expand Down

0 comments on commit a762019

Please sign in to comment.