This commit is contained in:
Kalle (Sendou) 2021-03-28 02:15:46 +02:00
parent a0445f3631
commit 6153bfb968

View File

@ -10,7 +10,7 @@ const MyContainer: React.FC<Props & ContainerProps> = ({
wide = false,
...props
}) => (
<Container maxW={wide ? "100ch" : "75ch"} {...props}>
<Container maxW={wide ? "64rem" : "48rem"} {...props}>
{children}
</Container>
);