Skip to content

Commit

Permalink
Fix: 메인 페이지 댓글 높이 수정 #65
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyeeeah committed Oct 17, 2023
1 parent 5998e04 commit a447c21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/(main)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import SimpleChatCardList from '@/components/pages/main/SimpleChatCardList';
import RecommendPlace from '@/components/pages/main/RecommendPlace';

export default function Home() {
console.log('hoo');
return (
<main className="flex-1 w-full flex p-8 gap-10 mt-0 overflow-y-scroll h-full items-start">
<main className="flex items-start flex-1 w-full h-full gap-10 p-8 mt-0 overflow-y-scroll">
<Feed />
<aside className="sticky top-0 flex-col justify-between hidden w-3/6 h-screen py-4 tablet:flex">
<SimpleChatCardList />
Expand Down
2 changes: 1 addition & 1 deletion components/ui/BoardCard/FeedBoardCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function FeedBoardCard({
direction="column"
justify="start"
align="start"
className="max-h-[82px] overflow-hidden"
className="max-h-[74px] overflow-hidden"
>
{comments?.map((comment) => (
<BoardCard.Comments
Expand Down

0 comments on commit a447c21

Please sign in to comment.