@devchitchat/chat 4.2.0 → 4.2.1

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": "@devchitchat/chat",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "description": "A small chat app. p2p video and screenshare.",
5
5
  "scripts": {
6
6
  "dev": "bun --watch index.js",
@@ -499,7 +499,10 @@ details summary {
499
499
  font-size: 1rem;
500
500
  margin-bottom: 7px;
501
501
  }
502
- .chat-topic { color: var(--text-secondary); }
502
+ .chat-topic {
503
+ color: var(--text-secondary);
504
+ display: none; /* don't show this for now.*/
505
+ }
503
506
  .chat-header-actions { margin-left: auto; display: flex; gap: 6px; }
504
507
 
505
508
  .search-bar { padding: 8px 20px; background: var(--bg-topbar); border-bottom: 1px solid var(--border); }
@@ -848,8 +851,11 @@ details summary {
848
851
  }
849
852
  .btn-primary:hover { opacity: 0.85; }
850
853
  .btn-ghost {
851
- background: none; border: none; padding: 6px 12px; border-radius: var(--radius-sm);
852
- color: var(--text-muted); cursor: pointer;
854
+ border: none;
855
+ padding: 6px 12px;
856
+ border-radius: var(--radius-sm);
857
+ color: var(--text-muted);
858
+ cursor: pointer;
853
859
  }
854
860
  .btn-ghost:hover { background: var(--bg-hover); color: var(--text-primary); }
855
861
  .btn-icon {
@@ -1508,7 +1514,6 @@ body:has(.admin-topbar) main {
1508
1514
  border: 1px solid var(--border);
1509
1515
  border-radius: 6px;
1510
1516
  margin-bottom: 8px;
1511
- overflow: hidden;
1512
1517
  }
1513
1518
 
1514
1519
  .hub-group__summary {