Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: set container max width for chat message and new hub screen #3213

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading