Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -42,7 +42,7 @@ export const Chat: React.FC = () => { | ... | @@ -42,7 +42,7 @@ export const Chat: React.FC = () => { |
42 | 42 | ||
43 | return ( | 43 | return ( |
44 | <div className='w-5/12'> | 44 | <div className='w-5/12'> |
45 | - <div className='w-full h-80 rounded shadow flex flex-col items-center end'> | 45 | + <div className='w-full h-80 rounded shadow flex flex-col overflow-y-scroll'> |
46 | {chatLines.map((line, i) => (<ChatLine key={16383+i} chatData={line}/>))} | 46 | {chatLines.map((line, i) => (<ChatLine key={16383+i} chatData={line}/>))} |
47 | <div ref={messageEndRef} /> | 47 | <div ref={messageEndRef} /> |
48 | </div> | 48 | </div> | ... | ... |
-
Please register or login to post a comment