@banbox/chat 1.0.6 → 1.0.7

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": "@banbox/chat",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Banbox Chat UI components — reusable across all Banbox React/Next.js projects",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
@@ -10,9 +10,9 @@ type Props = {
10
10
 
11
11
  export default function ChatHeader({ left, right, below, className }: Props) {
12
12
  return (
13
- <div>
14
- <div className={`border-b border-[#e1e1e1] h-[64px] flex items-start justify-between px-4 pt-2.5${className ? ` ${className}` : ""}`}>
15
- <div className="flex items-start gap-3">{left}</div>
13
+ <div className={`border-b border-[#ededed] h-[64px]${className ? ` ${className}` : ""}`}>
14
+ <div className="flex items-center justify-between px-4 h-full">
15
+ <div className="flex items-center gap-3">{left}</div>
16
16
  {right}
17
17
  </div>
18
18
  {below && <>{below}</>}