Skip to content

Commit

Permalink
return maxW for Layout Container
Browse files Browse the repository at this point in the history
  • Loading branch information
tom2drum committed Aug 5, 2024
1 parent 5fcde0f commit d59ae8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/shared/layout/components/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface Props {

const Container = ({ children, className }: Props) => {
return (
<Box className={ className } minWidth={{ base: '100vw', lg: 'auto' }}>
<Box className={ className } minWidth={{ base: '100vw', lg: 'fit-content' }}>
{ children }
</Box>
);
Expand Down

0 comments on commit d59ae8a

Please sign in to comment.