Commit 75eceaa5 authored by Vignesh Mohankumar's avatar Vignesh Mohankumar Committed by GitHub

fix: Revert "feat: fix padding" (#4406)

Revert "feat: fix padding (#4400)"

This reverts commit 96c23af9.
parent c6b4cc8e
...@@ -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 ? `120px 16px 0px 16px` : `72px 16px 0px 16px`)}; padding: ${({ navBarFlag }) => (navBarFlag === NavBarVariant.Enabled ? `72px 0px 0px 0px` : `120px 0px 0px 0px`)};
align-items: center; align-items: center;
flex: 1; flex: 1;
${({ theme }) => theme.mediaWidth.upToSmall` ${({ theme }) => theme.mediaWidth.upToSmall`
padding: 52px 8px 16px 8px; padding: 52px 0px 16px 0px;
`}; `};
` `
......
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