Skip to content

Commit

Permalink
fix: scroll issue and text size
Browse files Browse the repository at this point in the history
  • Loading branch information
vj-abishek committed Apr 1, 2021
1 parent 34d7b2e commit 8e2ddc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/Home/Room/Container.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ function Container({
{sidebar ? (
<>
<header
className={`${Styles.borderBorder} sticky top-0 z-50 w-full px-4 py-3 uppercase font-bold space-y-1`}
className={`${Styles.borderBorder} sticky top-0 z-50 w-full px-4 py-3 uppercase font-bold text-base`}
style={{ background: '#00313A' }}
>
Chats
</header>
<div style={{ overflow: 'hidden auto', height: 'inherit' }}>
<div style={{ overflow: 'hidden auto', height: 'calc(500px - 50px)' }}>
<Single key={id} data={data} user={user} userStatus={userStatus} />
</div>
</>
Expand Down

1 comment on commit 8e2ddc8

@vercel
Copy link

@vercel vercel bot commented on 8e2ddc8 Apr 1, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.