Skip to content

Commit d92c43d

Browse files
committed
fix min width of the container
1 parent 22f853f commit d92c43d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/templates/tutorial.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,16 @@ import { Context } from "../types"
4444
const ContentContainer = (props) => {
4545
const boxShadow = useToken("colors", "tableBoxShadow")
4646
const borderColor = useToken("colors", "primary")
47-
const mediumBp = useToken("breakpoints", "md")
4847

4948
return (
5049
<Box
5150
as="article"
5251
maxW="1000px"
52+
minW={0}
5353
background="background"
5454
boxShadow={{ base: "none", lg: boxShadow }}
5555
m={{ base: "2.5rem 0rem", lg: "2rem 2rem 6rem" }}
5656
p={{ base: "3rem 2rem", lg: 16 }}
57-
w={{ base: "100%", lg: "auto" }}
58-
flex={`1 1 ${mediumBp}`}
5957
borderRadius="4px"
6058
{...props}
6159
sx={{

0 commit comments

Comments
 (0)