Skip to content

Commit 655321d

Browse files
committed
fix(webapp): matching resting gap below the customize modal list
1 parent e5e0387 commit 655321d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/webapp/app/components/navigation/CustomizeSidebarDialog.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ export function CustomizeSidebarDialog({
236236
<DialogHeader>Customize sidebar</DialogHeader>
237237
{/* Bleeds through the container's right padding (-mr-4/pr-4) so the scrollbar sits at the
238238
modal edge, and through the vertical grid gaps (-mt-1.25/-mb-4) so the scrollport (and
239-
scrollbar) starts at the header divider and ends at the footer border. pt-3 is INSIDE
240-
the scrollport: a resting gap above the first title that content scrolls through. */}
241-
<div className="-mb-4 -mr-4 -mt-1.25 max-h-[60vh] space-y-6 overflow-y-auto pr-4 pt-3 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-surface-control">
239+
scrollbar) starts at the header divider and ends at the footer border. pt-3/pb-3 are
240+
INSIDE the scrollport: resting gaps around the list that content scrolls through. */}
241+
<div className="-mb-4 -mr-4 -mt-1.25 max-h-[60vh] space-y-6 overflow-y-auto pb-3 pr-4 pt-3 scrollbar-thin scrollbar-track-transparent scrollbar-thumb-surface-control">
242242
{orderedSections.map((section, index) => (
243243
<div key={section.id}>
244244
<div className="flex items-center justify-between border-b border-grid-dimmed pb-1.5">

0 commit comments

Comments
 (0)