Skip to content

Commit

Permalink
scroll fix
Browse files Browse the repository at this point in the history
removed h-full from a container
  • Loading branch information
masnabinumeed committed Dec 4, 2024
1 parent 6ea8d83 commit be87c1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/chat/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default function ChatPage() {
}

return (
<div className="flex h-screen w-full touch-manipulation flex-col overflow-hidden lg:flex-row">
<div className="flex w-full touch-manipulation flex-col overflow-hidden lg:flex-row">
<MessageThreadsSidebar
isOpen={isSidebarOpen}
onClose={() => setIsSidebarOpen(false)}
Expand Down Expand Up @@ -261,7 +261,7 @@ export default function ChatPage() {
</div>

{/* Input - now will stay fixed at bottom */}
<div className="flex-none border-t bg-background p-4">
<div className="flex-none bg-background p-4 ">
<div className="mx-auto max-w-2xl">
<form
className="flex items-center gap-2"
Expand Down
2 changes: 1 addition & 1 deletion components/pehchan-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function PehchanLoginButton() {
return (
<Button
onClick={handleLogin}
className="flex items-center justify-center gap-2 rounded-md px-4 py-2 text-white transition-colors hover:bg-green-700"
className="flex items-center justify-center gap-2 rounded-md px-4 py-2 text-white transition-colors bg-green-600 hover:bg-green-700"
>
<Icons.whiteLogo />
Login with Pehchan
Expand Down

0 comments on commit be87c1d

Please sign in to comment.