Commit 96c23af9 authored by lynn's avatar lynn Committed by GitHub

feat: fix padding (#4400)

fix padding
parent 6a29dacd
...@@ -55,11 +55,11 @@ const BodyWrapper = styled.div<{ navBarFlag: NavBarVariant }>` ...@@ -55,11 +55,11 @@ const BodyWrapper = styled.div<{ navBarFlag: NavBarVariant }>`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 100%; width: 100%;
padding: ${({ navBarFlag }) => (navBarFlag === NavBarVariant.Enabled ? `72px 0px 0px 0px` : `120px 0px 0px 0px`)}; padding: ${({ navBarFlag }) => (navBarFlag === NavBarVariant.Enabled ? `120px 16px 0px 16px` : `72px 16px 0px 16px`)};
align-items: center; align-items: center;
flex: 1; flex: 1;
${({ theme }) => theme.mediaWidth.upToSmall` ${({ theme }) => theme.mediaWidth.upToSmall`
padding: 52px 0px 16px 0px; padding: 52px 8px 16px 8px;
`}; `};
` `
......
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