Skip to content

Commit

Permalink
Add new height to the title bar
Browse files Browse the repository at this point in the history
  • Loading branch information
siddxharth committed Aug 20, 2024
1 parent 699b14a commit d22b4b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/modules/Dashboard/Dashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ export default function Dashboard() {
</div>
{activeUser ? (
<div className="w-3/4 h-screen bg-white flex flex-col items-left">
<div className="flex flex-row items-center bg-secondary px-2">
<div className="flex flex-row items-center h-[100px] bg-secondary px-2">
<img
className="rounded-full"
src={User}
Expand All @@ -309,7 +309,7 @@ export default function Dashboard() {
</span>
</p>
<p className="text-xs font-normal italic text-gray-500">
{typing ? "Typing..." : "Online"}
{typing ? "Typing..." : ""}
</p>
</div>
</div>
Expand Down

0 comments on commit d22b4b1

Please sign in to comment.