Update chat input

This commit is contained in:
Bill 2021-04-23 21:05:37 -04:00
parent f941ebe72d
commit 0cc1c1d278
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1,3 @@
.nitro-chat-input {
}

View File

@ -5,7 +5,7 @@ import { ChatInputViewProps } from './ChatInputView.types';
export const ChatInputView: FC<ChatInputViewProps> = props =>
{
return (
<div className="nitro-chat-form fixed-bottom mb-4 d-flex justify-content-center">
<div className="nitro-chat-input fixed-bottom mb-4 d-flex justify-content-center">
<div className="nitro-chat-form-input">
<input type="text" className="form-control" placeholder={ LocalizeText('widgets.chatinput.default') } />
</div>