Skip to content

Commit 1b559bf

Browse files
committed
Add bottom padding to Sidebar (#4993)
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on modifying the padding class in the `Sidebar.tsx` component to enhance the layout. ### Detailed summary - Changed the class from `pt-7` to `py-7` in the `div` element, which adjusts the vertical padding (top and bottom) instead of just the top padding. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 982219a commit 1b559bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dashboard/src/@/components/blocks/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function Sidebar(props: SidebarContentProps) {
3535
props.className,
3636
)}
3737
>
38-
<div className="pt-7">
38+
<div className="py-7">
3939
{props.header}
4040
<div className="flex flex-col gap-1">
4141
<RenderSidebarLinks links={props.links} />

0 commit comments

Comments
 (0)