Skip to content

Commit

Permalink
design: 효과없는 height 100% 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Aug 22, 2024
1 parent 19d2e85 commit 35b7b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/EventPage/HomePage/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const HomePage = () => {
const {totalExpenseAmount} = useTotalExpenseAmountStore();

return (
<div style={{height: '100%', paddingBottom: '2rem'}}>
<div style={{paddingBottom: '2rem'}}>
<Title title={eventName} price={totalExpenseAmount} />
<Tabs tabsContainerStyle={{gap: '1rem'}}>
<Tab label="전체 지출 내역" content={<StepList />} />
Expand Down

0 comments on commit 35b7b91

Please sign in to comment.