Web: Components: Added stopping webkit-touch-callout at TextInput component

This commit is contained in:
Ilya Oleshko 2021-03-31 10:43:41 +03:00
parent ff79708e59
commit d12a3460db

View File

@ -95,6 +95,9 @@ const StyledTextInput = styled(Input).attrs((props) => ({
user-select: ${(props) => props.theme.userSelect};
}
-webkit-touch-callout: none;
-webkit-user-select: none;
${(props) => !props.withBorder && `border: none;`}
`;