@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pubuduth-aplicy/chat-ui",
3
- "version": "2.2.22",
3
+ "version": "2.2.23",
4
4
  "description": "This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -61,7 +61,7 @@ export const Chat = () => {
61
61
  }, [socket, sendMessage, updateMessageStatus, selectedConversation]);
62
62
 
63
63
  return (
64
- <div className="container mx-auto mb-5">
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"
@@ -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: '100%';
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 {