mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-22 22:30:52 +01:00
Chat widget pointer event fix
This commit is contained in:
parent
e5d81b7a53
commit
4ebc638eb4
@ -1 +1,5 @@
|
||||
.nitro-chat-widget {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@import './form/ChatFormWidgetView';
|
||||
|
@ -7,9 +7,9 @@ export function ChatWidgetsView(props: ChatWidgetsViewProps): JSX.Element
|
||||
const {} = props;
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="nitro-chat-widget">
|
||||
<ChatMessagesWidgetView />
|
||||
<ChatFormWidgetView />
|
||||
</>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
@ -4,7 +4,8 @@
|
||||
align-items: center;
|
||||
position: relative;
|
||||
height: 100%;
|
||||
padding:0 10px;
|
||||
padding: 0 10px;
|
||||
pointer-events: all;
|
||||
|
||||
input {
|
||||
width: auto;
|
||||
|
Loading…
Reference in New Issue
Block a user