Skip to content

Commit

Permalink
fix: modify por width to have breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Polybius93 committed Oct 1, 2024
1 parent 618d249 commit 6778cd2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { VStack } from '@chakra-ui/react';
import { HasChildren } from '@models/has-children';

import { breakpoints } from '@shared/utils';

export function ProofOfReserveLayout({ children }: HasChildren): React.JSX.Element {
return (
<VStack w={'100%'} spacing={'20px'}>
<VStack w={breakpoints} spacing={'20px'}>
{children}
</VStack>
);
Expand Down

0 comments on commit 6778cd2

Please sign in to comment.