Skip to content

Commit

Permalink
Add padding to PagePanel
Browse files Browse the repository at this point in the history
  • Loading branch information
wong2 committed Mar 11, 2023
1 parent 5e9872f commit 99d86eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const PagePanel: FC<PropsWithChildren<{ title: string }>> = (props) => {
<div className="text-center border-b border-solid border-[rgb(237,237,237)] h-[80px] flex flex-col justify-center mx-10">
<span className="font-semibold text-[#303030] text-lg">{props.title}</span>
</div>
<div className="mx-10 h-full overflow-auto">{props.children}</div>
<div className="mx-10 h-full overflow-auto pl-[2px]">{props.children}</div>
</div>
)
}
Expand Down

0 comments on commit 99d86eb

Please sign in to comment.