Web: Common: fixed button height on mobile

This commit is contained in:
Viktor Fomin 2021-06-30 13:49:33 +03:00
parent 2d718c33f8
commit 567d3b46ed

View File

@ -280,6 +280,10 @@ export const StyledHideFilterButton = styled.div`
:active {
background-color: ${(props) => (props.isDisabled ? "#F8F9F9" : "#ECEEF1")};
}
@media (max-width: 375px) {
height: 25px;
}
`;
export const StyledIconButton = styled.div`