Skip to content

Commit 4b329cd

Browse files
authored
direction responsive margins
1 parent b753cab commit 4b329cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages-conditional/eth.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export const LeftColumn = (props: ChildOnlyProp) => (
121121
<Box
122122
flex="0 0 50%"
123123
maxW={{ base: "full", lg: "75%" }}
124-
mr={{ lg: 16 }}
124+
me={{ lg: 16 }}
125125
{...props}
126126
/>
127127
)
@@ -156,7 +156,7 @@ const Hero = (props: ChildOnlyProp) => (
156156
maxW="800px"
157157
bgSize="cover"
158158
bgRepeat="no-repeat"
159-
ml={{ base: 0, md: 8 }}
159+
ms={{ base: 0, md: 8 }}
160160
{...props}
161161
/>
162162
)
@@ -200,7 +200,7 @@ const H4 = (props: HeadingProps) => (
200200
)
201201

202202
const CardContainer = (props: FlexProps) => (
203-
<Flex wrap="wrap" ml={-4} mr={-4} {...props} />
203+
<Flex wrap="wrap" my={-4} {...props} />
204204
)
205205

206206
const TokenCard = (props: ComponentProps<typeof HorizontalCard>) => (

0 commit comments

Comments
 (0)