@pubuduth-aplicy/chat-ui 2.1.81 → 2.1.83
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
|
@@ -265,14 +265,14 @@ const Conversations = () => {
|
|
|
265
265
|
<button
|
|
266
266
|
className={`flex-1 py-3 px-4 text-sm font-medium text-center border-b-2 transition-colors ${
|
|
267
267
|
activeTab === "personal"
|
|
268
|
-
? "border-
|
|
269
|
-
: "border-transparent text-gray-500 hover:text-gray-700
|
|
268
|
+
? "border-primary text-primary "
|
|
269
|
+
: "border-transparent text-gray-500 hover:text-gray-700"
|
|
270
270
|
}`}
|
|
271
271
|
onClick={() => setActiveTab("personal")}
|
|
272
272
|
>
|
|
273
273
|
Personal
|
|
274
274
|
{personalUnreadCount > 0 && (
|
|
275
|
-
<span className="ml-2 bg-blue-
|
|
275
|
+
<span className="ml-2 bg-blue-primary text-white text-xs rounded-full px-2 py-1 min-w-5 inline-flex justify-center">
|
|
276
276
|
{personalUnreadCount}
|
|
277
277
|
</span>
|
|
278
278
|
)}
|
|
@@ -280,14 +280,14 @@ const Conversations = () => {
|
|
|
280
280
|
<button
|
|
281
281
|
className={`flex-1 py-3 px-4 text-sm font-medium text-center border-b-2 transition-colors ${
|
|
282
282
|
activeTab === "service"
|
|
283
|
-
? "border-
|
|
284
|
-
: "border-transparent text-gray-500 hover:text-gray-700
|
|
283
|
+
? "border-primary text-primary "
|
|
284
|
+
: "border-transparent text-gray-500 hover:text-gray-700"
|
|
285
285
|
}`}
|
|
286
286
|
onClick={() => setActiveTab("service")}
|
|
287
287
|
>
|
|
288
288
|
Service
|
|
289
289
|
{serviceUnreadCount > 0 && (
|
|
290
|
-
<span className="ml-2 bg-
|
|
290
|
+
<span className="ml-2 bg-primary text-white text-xs rounded-full px-2 py-1 min-w-5 inline-flex justify-center">
|
|
291
291
|
{serviceUnreadCount}
|
|
292
292
|
</span>
|
|
293
293
|
)}
|