fix: Missing padding at the bottom of settings screens

This commit is contained in:
Tom Moor
2022-02-25 21:21:10 -08:00
parent ad2bce9c10
commit 42bf1530ac

View File

@@ -13,7 +13,8 @@ const Container = styled.div<{ withStickyHeader?: boolean }>`
padding: ${(props) => (props.withStickyHeader ? "4px 12px" : "60px 12px")};
${breakpoint("tablet")`
padding: ${(props: any) => (props.withStickyHeader ? "4px 60px" : "60px")};
padding: ${(props: any) =>
props.withStickyHeader ? "4px 60px 60px" : "60px"};
`};
`;