Skip to content

Commit

Permalink
patch unnessecary scrollbars
Browse files Browse the repository at this point in the history
resolves #2943
  • Loading branch information
timothycarambat committed Jan 7, 2025
1 parent 6134c15 commit 487db89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const HistoricalMessage = ({
saveChanges={saveEditedMessage}
/>
) : (
<div className="overflow-x-scroll break-words show-scrollbar">
<div className="overflow-x-scroll break-words">
<span
className="flex flex-col gap-y-1"
dangerouslySetInnerHTML={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const PromptReply = ({
<div className="flex gap-x-5">
<WorkspaceProfileImage workspace={workspace} />
<span
className="overflow-x-scroll break-words show-scrollbar"
className="overflow-x-scroll break-words"
dangerouslySetInnerHTML={{ __html: renderMarkdown(reply) }}
/>
</div>
Expand Down

1 comment on commit 487db89

@felix-laarmann-hyve
Copy link

Choose a reason for hiding this comment

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

@timothycarambat
this is still producing scrollbars for me. I removed overflow-x-scroll

Please sign in to comment.