Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
JinleeJeong committed Mar 2, 2024
2 parents f06358e + da261e9 commit 4c02179
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(main)/report/_components/monthly-dividend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const MonthlyDividend = React.memo(({ data }: MonthlyDividendProps) => {
}, []);

return (
<div className="flex flex-col gap-6 p-5 pb-8">
<div className="flex flex-col gap-6 p-5 py-8">
<div className="flex w-full flex-col items-start gap-y-0.5">
<p className=" text-h5 text-grey-600">Average Monthly Dividend Income</p>
<p className=" text-h1 text-grey-900">{`$${(averageDividendIncome / 12).toFixed(2)}`}</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const DividendAccordion = ({ monthlyDividendList }: { monthlyDividendList
className={cn("rounded-lg border border-grey-200 p-5")}
>
<AccordionTrigger>
<div className={cn("flex w-full items-center justify-between", isOpenable && "pr-5")}>
<div className={cn("flex w-full items-center justify-between", isOpenable && "pr-3")}>
<p className=" text-h4 text-grey-900">{`${month}${year}`}</p>
<p className=" text-h4 text-grey-900">${monthDividend.totalDividend.toFixed(2)}</p>
</div>
Expand Down

0 comments on commit 4c02179

Please sign in to comment.