Web: Components: added margin for home page

This commit is contained in:
Dmitry Sychugov 2022-02-28 18:25:08 +05:00
parent 7a52c38871
commit bb27fc60a7

View File

@ -9,7 +9,8 @@ const HomeContainer = styled.div`
display: flex;
justify-content: ${isMobile ? "center" : "space-between"};
align-items: center;
margin-top: ${(props) =>
props.snackbarExist && isMobileOnly ? "150px" : "50px"};
@media (max-width: 1024px) {
flex-direction: column;
}