We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f853f commit d92c43dCopy full SHA for d92c43d
src/templates/tutorial.tsx
@@ -44,18 +44,16 @@ import { Context } from "../types"
44
const ContentContainer = (props) => {
45
const boxShadow = useToken("colors", "tableBoxShadow")
46
const borderColor = useToken("colors", "primary")
47
- const mediumBp = useToken("breakpoints", "md")
48
49
return (
50
<Box
51
as="article"
52
maxW="1000px"
+ minW={0}
53
background="background"
54
boxShadow={{ base: "none", lg: boxShadow }}
55
m={{ base: "2.5rem 0rem", lg: "2rem 2rem 6rem" }}
56
p={{ base: "3rem 2rem", lg: 16 }}
57
- w={{ base: "100%", lg: "auto" }}
58
- flex={`1 1 ${mediumBp}`}
59
borderRadius="4px"
60
{...props}
61
sx={{
0 commit comments