mirror of
https://github.com/billsonnn/nitro-react.git
synced 2025-02-17 01:12:37 +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';
|
@import './form/ChatFormWidgetView';
|
||||||
|
@ -7,9 +7,9 @@ export function ChatWidgetsView(props: ChatWidgetsViewProps): JSX.Element
|
|||||||
const {} = props;
|
const {} = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="nitro-chat-widget">
|
||||||
<ChatMessagesWidgetView />
|
<ChatMessagesWidgetView />
|
||||||
<ChatFormWidgetView />
|
<ChatFormWidgetView />
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,8 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding:0 10px;
|
padding: 0 10px;
|
||||||
|
pointer-events: all;
|
||||||
|
|
||||||
input {
|
input {
|
||||||
width: auto;
|
width: auto;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user