update footer margins

This commit is contained in:
Abhinav 2022-02-05 16:19:20 +05:30
parent b6e1dd5561
commit ba54a48bd9

View file

@ -87,9 +87,12 @@ const DateContainer = styled.div<{ span: number }>`
const FooterContainer = styled.div<{ span: number }>` const FooterContainer = styled.div<{ span: number }>`
font-size: 14px; font-size: 14px;
margin-bottom: 0.75rem;
@media (max-width: 540px) { @media (max-width: 540px) {
font-size: 12px; font-size: 12px;
margin-bottom: 0.5rem;
} }
color: #979797; color: #979797;
text-align: center; text-align: center;
grid-column: span ${(props) => props.span}; grid-column: span ${(props) => props.span};
@ -99,7 +102,7 @@ const FooterContainer = styled.div<{ span: number }>`
& > p { & > p {
margin: 0; margin: 0;
} }
margin: calc(2rem + 20px) 0 1rem 0; margin-top: calc(2rem + 20px);
`; `;
const NothingContainer = styled.div<{ span: number }>` const NothingContainer = styled.div<{ span: number }>`