Skip to content

Commit

Permalink
fix: limit width of footer on recommendation page
Browse files Browse the repository at this point in the history
  • Loading branch information
hee-suh committed Oct 3, 2024
1 parent 0fb5c1a commit bcde7da
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/recommendation/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,8 @@ const Recommendation = () => {
<div ref={bottomChat} />
</section>

<footer className="invitation-gradient fixed bottom-0 left-1/2 flex h-[96px] w-full -translate-x-1/2 content-center items-center px-5">
<footer className="invitation-gradient fixed bottom-0 left-1/2 flex h-[96px] w-full max-w-[420px] -translate-x-1/2 content-center items-center px-5 pb-5 pt-7">
<ChatInput
className="pb-5 pt-7"
value={input}
isFetching={isFetching || status === 'pending'}
isLimitReached={status === 'success' && availableCount <= 0}
Expand Down

0 comments on commit bcde7da

Please sign in to comment.