fix/exchange-layout

This commit is contained in:
Vladimir Volek
2020-12-08 19:38:11 +01:00
committed by Maroš
parent c403b12ce2
commit e2d7c22d16
2 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ const Wrapper = styled.div`
display: flex;
justify-content: space-between;
@media screen and (max-width: ${variables.SCREEN_SIZE.LG}) {
@media screen and (max-width: ${variables.SCREEN_SIZE.XL}) {
margin-top: 27px;
}
`;

View File

@@ -18,7 +18,7 @@ const Top = styled.div`
display: flex;
flex: 1;
@media screen and (max-width: ${variables.SCREEN_SIZE.LG}) {
@media screen and (max-width: ${variables.SCREEN_SIZE.XL}) {
flex-direction: column;
}
`;
@@ -40,13 +40,13 @@ const MiddleWrapper = styled.div`
align-items: center;
justify-content: center;
@media screen and (max-width: ${variables.SCREEN_SIZE.LG}) {
@media screen and (max-width: ${variables.SCREEN_SIZE.XL}) {
padding-bottom: 27px;
}
`;
const StyledIcon = styled(Icon)`
@media screen and (max-width: ${variables.SCREEN_SIZE.LG}) {
@media screen and (max-width: ${variables.SCREEN_SIZE.XL}) {
transform: rotate(90deg);
}
`;