Skip to content

Commit 55d199a

Browse files
committed
small update on input buttons
1 parent 404c0dd commit 55d199a

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

app/page.tsx

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ export default function Page() {
2222
</button>
2323
<button className="p-2 rounded-full cursor-pointer active:bg-slate-300/60
2424
transition-all duration-150 ease-in-out">
25-
<MagnifyingGlassIcon className="size-6 text-slate-800" />
25+
<MagnifyingGlassIcon className="size-6 text-gray-700" />
2626
</button>
2727
<Popover className="relative">
2828
<PopoverButton className="p-2 rounded-full cursor-pointer active:bg-slate-300/60
2929
transition-all duration-150 ease-in-out ring-0 outline-0 focus:bg-slate-300/60">
30-
<EllipsisVerticalIcon className="size-6 text-slate-800" />
30+
<EllipsisVerticalIcon className="size-6 text-gray-700" />
3131
</PopoverButton>
3232
<PopoverPanel as="ul" anchor="bottom start" className="bg-white py-4 shadow rounded-sm
33-
w-52 flex flex-col gap-2 mr-2 ">
33+
w-52 flex flex-col gap-2 mr-2 z-50">
3434
<li className="hover:bg-gray-100 px-4 py-2 cursor-pointer">Contact Info</li>
3535
<li className="hover:bg-gray-100 px-4 py-2 cursor-pointer">Select messages</li>
3636
<li className="hover:bg-gray-100 px-4 py-2 cursor-pointer">Mute notifications</li>
@@ -88,19 +88,22 @@ export default function Page() {
8888
</div>
8989
</div>
9090
</div>
91-
<div className="flex items-center p-4 gap-4 bg-[#F0F2F5]
91+
<div className="flex items-center px-4 py-2 gap-4 bg-[#F0F2F5]
9292
shadow-[0_-1px_3px_0_rgba(0,0,0,0.1),0_-1px_2px_0_rgba(0,0,0,0.06)]">
93-
<button>
93+
<button className="cursor-pointer p-2 rounded-full active:bg-slate-300/60
94+
transition-all duration-150 ease-in-out">
9495
<PlusIcon className="size-6 text-gray-700" />
9596
</button>
96-
<div className="flex-1 flex items-center gap-3 bg-white p-3
97+
<div className="flex-1 flex items-center gap-3 bg-white px-4 py-2
9798
rounded-lg">
98-
<button>
99+
<button className="cursor-pointer p-2 rounded-full active:bg-slate-300/60
100+
transition-all duration-150 ease-in-out">
99101
<PhotoIcon className="size-6 text-gray-700" />
100102
</button>
101103
<input placeholder="Type a message" className="outline-none flex-1" />
102104
</div>
103-
<button>
105+
<button className="cursor-pointer p-2 rounded-full active:bg-slate-300/60
106+
transition-all duration-150 ease-in-out">
104107
<MicrophoneIcon className="size-6 text-gray-700" />
105108
</button>
106109
</div>

0 commit comments

Comments
 (0)