I have a Input.TextArea that get user input message, the html look like this:
<div className="input-box">
    <Input.TextArea
        id="talkInput"
        rows={1}
        value={inputValue}
        ref={inputRef}
        onChange={handleChatInputChange}
        onKeyPress={handleEnterKey}
        placeholder="input some message,press Enter to send" />
    <Button icon={<SendOutlined style={{ 
        display: 'flex', 
        alignItems: 'center', 
        transform: 'rotate(-45deg)',
        justifyContent: 'center' }}/>}
        loading={loadings}
        onClick={handleSend}
    ></Button>
</div>
when I input some content, the Input.TextArea will show light blue border. is it possible to make it not show the border? I have tried like this:
textarea:focus {
  outline: none;
  border: none;
}
and also set the border color like this:
textarea:focus {
  outline: none;
  border: none;
  border: 0px solid white;
}
none of them works. what should I do to make the Input.TextArea not show the light blue border?
 
     
    