Commit d59ae8a3 authored by tom's avatar tom

return maxW for Layout Container

parent 5fcde0f5
...@@ -8,7 +8,7 @@ interface Props { ...@@ -8,7 +8,7 @@ interface Props {
const Container = ({ children, className }: Props) => { const Container = ({ children, className }: Props) => {
return ( return (
<Box className={ className } minWidth={{ base: '100vw', lg: 'auto' }}> <Box className={ className } minWidth={{ base: '100vw', lg: 'fit-content' }}>
{ children } { children }
</Box> </Box>
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment