@pubuduth-aplicy/chat-ui 2.2.22 → 2.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/Chat.tsx +1 -1
- package/src/style/style.css +1 -3
package/package.json
CHANGED
package/src/components/Chat.tsx
CHANGED
|
@@ -61,7 +61,7 @@ export const Chat = () => {
|
|
|
61
61
|
}, [socket, sendMessage, updateMessageStatus, selectedConversation]);
|
|
62
62
|
|
|
63
63
|
return (
|
|
64
|
-
<div className="
|
|
64
|
+
<div className="w-full mb-5">
|
|
65
65
|
<div className="grid-container">
|
|
66
66
|
<div className={`sidebarContainer dark:bg-gray-800 ${
|
|
67
67
|
selectedConversation ? "mobile-hidden" : "mobile-visible"
|
package/src/style/style.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
overflow: hidden;
|
|
4
4
|
/* grid-template-columns: repeat(12, minmax(0, 1fr)); */
|
|
5
5
|
border-radius: 0.5rem;
|
|
6
|
-
width:
|
|
6
|
+
width: 100%;
|
|
7
7
|
margin-top: 10px;
|
|
8
8
|
background-clip: padding-box;
|
|
9
9
|
/* background-color: #9CA3AF; */
|
|
@@ -439,8 +439,6 @@
|
|
|
439
439
|
width: 100%;
|
|
440
440
|
font-family: Arial, sans-serif;
|
|
441
441
|
margin-bottom: 8px;
|
|
442
|
-
margin: 0 auto;
|
|
443
|
-
max-width: 1200px;
|
|
444
442
|
}
|
|
445
443
|
|
|
446
444
|
.message-row {
|