Skip to content

Commit

Permalink
chore: use tokens instead of consts to be more reliable
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Feb 13, 2024
1 parent e9d6047 commit 76f8e7d
Showing 1 changed file with 2 additions and 2 deletions.
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="accent.background-primary"
>
{children}
Expand Down

0 comments on commit 76f8e7d

Please sign in to comment.