Skip to content

Commit

Permalink
gg
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahan-nub committed Oct 24, 2024
1 parent 454bf0a commit be8ec69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Chat/Chat.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ export default function Chat() {

return (
<div className="lg:w-4/5 w-full max-h-screen min-h-screen flex flex-col justify-between">
<div className="flex flex-col justify-between h-full w-full">
<div className="flex flex-col justify-between h-full max-h-screen w-full">
<ChatHeader></ChatHeader>
<div className="overflow-scroll basis-[75%] max-lg:basis-[78%] no-scrollbar">
<div className="overflow-scroll basis-[75%] max-lg:basis-[80%] no-scrollbar">
{messages &&
messages.map((messageInfo) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/Chat/ChatInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default function ChatInput({ handleMessageUpdate }) {
!activeChannel && alert("please select a channel before typing!")
}
className={`w-[98%] backdrop-blur-xl mx-auto my-1 md:my-3 rounded-lg shadow-lg bg-color-2 flex items-center py-1 lg:py-2 px-2 lg:px-4 justify-between basis-[10%] max-lg:basis-[8%]
${menuState ? "hidden lg:flex" : "visible"}
${menuState ? "hidde lg:flex" : "visible"}
`}
>
<div className="flex flex-1 items-center">
Expand Down

0 comments on commit be8ec69

Please sign in to comment.