Commit e04e960c authored by Chunchi Che's avatar Chunchi Che

fix small

parent f1adce7e
Pipeline #23502 passed with stages
in 14 minutes and 46 seconds
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
position: relative; position: relative;
height: 60% !important; height: 60% !important;
width: 60% !important; width: 60% !important;
background-color: #0d0d0d8f; background-color: #0d0d0d8f !important;
left: 20%; left: 20%;
bottom: -30%; bottom: -30%;
border-radius: 6px; border-radius: 6px;
......
...@@ -69,6 +69,7 @@ export const ChatBox: React.FC = () => { ...@@ -69,6 +69,7 @@ export const ChatBox: React.FC = () => {
mask={false} mask={false}
className={styles.chatbox} className={styles.chatbox}
onClose={onClose} onClose={onClose}
maskClosable
closeIcon={<DownOutlined />} closeIcon={<DownOutlined />}
> >
<div className={styles.container}> <div className={styles.container}>
...@@ -108,4 +109,4 @@ const DialogItem: React.FC<ChatItem> = ({ name, content }) => ( ...@@ -108,4 +109,4 @@ const DialogItem: React.FC<ChatItem> = ({ name, content }) => (
</div> </div>
); );
export const openChatBox = () => (store.open = true); export const openChatBox = () => (store.open = !store.open);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment