Skip to content

Commit 272102a

Browse files
fix(navbar): adjust user avatar size and add shadow for improved aesthetics
feat(multimodal-input): increase text size for better readability
1 parent c7b155c commit 272102a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

components/custom/multimodal-input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export function MultimodalInput({
193193
animate={{ rotateX: 0, opacity: 1 }}
194194
exit={{ rotateX: 90, opacity: 0 }}
195195
transition={{ duration: 0.5 }}
196-
className="text-xl font-semibold"
196+
className="text-2xl font-semibold"
197197
style={{
198198
textAlign: "center",
199199
display: "inline-block",

components/custom/navbar.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ export const Navbar = async () => {
4040
<>
4141
<DropdownMenu>
4242
<DropdownMenuTrigger asChild>
43-
<div className="size-10 rounded-full overflow-hidden flex items-center justify-center bg-emerald-600">
43+
<div className="size-8 rounded-full overflow-hidden flex items-center justify-center bg-emerald-600 shadow-md border border-zinc-200 dark:border-zinc-700">
4444
<Image
4545
src="/images/person.png"
4646
alt="User avatar"
47-
width={40}
48-
height={40}
49-
style={{ width: "40px", height: "40px" }}
47+
width={32}
48+
height={32}
49+
style={{ width: "32px", height: "32px" }}
5050
/>
5151
</div>
5252
</DropdownMenuTrigger>

public/images/person.png

-163 KB
Loading

0 commit comments

Comments
 (0)