Chat widget pointer event fix

This commit is contained in:
Batman 2021-04-21 19:54:58 -03:00
parent e5d81b7a53
commit 4ebc638eb4
3 changed files with 8 additions and 3 deletions

View File

@ -1 +1,5 @@
.nitro-chat-widget {
pointer-events: none;
}
@import './form/ChatFormWidgetView';

View File

@ -7,9 +7,9 @@ export function ChatWidgetsView(props: ChatWidgetsViewProps): JSX.Element
const {} = props;
return (
<>
<div className="nitro-chat-widget">
<ChatMessagesWidgetView />
<ChatFormWidgetView />
</>
</div>
);
}

View File

@ -4,7 +4,8 @@
align-items: center;
position: relative;
height: 100%;
padding:0 10px;
padding: 0 10px;
pointer-events: all;
input {
width: auto;