Web: Client: fixed margin top in home page

This commit is contained in:
Dmitry Sychugov 2022-03-28 14:26:58 +05:00
parent 7abe990d96
commit fc68063599

View File

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