Shared:Components:Filter: fix sort button for IOS mobile

This commit is contained in:
Timofey Boyko 2024-04-10 11:58:02 +03:00
parent 8bebb4a47f
commit 20cf46de7a

View File

@ -25,6 +25,7 @@
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import styled, { css } from "styled-components";
import { isIOS, isMobile } from "react-device-detect";
import CrossIcon from "PUBLIC_DIR/images/cross.react.svg";
@ -563,6 +564,7 @@ const StyledSortButton = styled.div<{ viewAs: TViewAs; isDesc: boolean }>`
.combo-button {
background: ${(props) =>
props.theme.filterInput.sort.background} !important;
padding-right: 4px;
.icon-button_svg {
cursor: pointer;
@ -596,6 +598,12 @@ const StyledSortButton = styled.div<{ viewAs: TViewAs; isDesc: boolean }>`
min-width: 200px;
margin-top: 3px;
${isMobile &&
isIOS &&
css`
right: 48px;
`}
.view-selector-item {
display: flex;
align-items: center;