Skip to content

Commit

Permalink
chore: set container max width for chat message and new hub screen (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
urmauur authored Jul 29, 2024
1 parent 101268f commit 007daa7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions web/screens/HubScreen2/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const HubScreen2: React.FC = () => {
{query.length > 0 ? (
<HubScreenFilter queryText={query} />
) : (
<Fragment>
<div className="mx-auto max-w-6xl">
<Slider />
<div data-testid="hub-search-bar" className="mx-4 px-4 md:px-12">
<Filter
Expand Down Expand Up @@ -102,7 +102,7 @@ const HubScreen2: React.FC = () => {
/>
))}
</div>
</Fragment>
</div>
)}
</ScrollArea>
</CenterPanelContainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const SimpleTextMessage: React.FC<Props> = ({ isLatestMessage, msg }) => {
}, [msg.content])

return (
<div className="group relative mx-auto p-4">
<div className="group relative mx-auto max-w-[700px] p-4">
<div
className={twMerge(
'mb-2 flex items-center justify-start gap-x-2',
Expand Down

0 comments on commit 007daa7

Please sign in to comment.