Skip to content

Commit

Permalink
fix: sticky sidebar layout overflow (#1895)
Browse files Browse the repository at this point in the history
  • Loading branch information
apledger authored and BC-krasnoshapka committed Jan 23, 2025
1 parent d41e1d0 commit 4169dd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/vibes/soul/sections/sticky-sidebar-layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function StickySidebarLayout({
>
<div
className={clsx(
'shrink-0',
'min-w-0',
sidebarPosition === 'after' ? 'order-2' : 'order-1',
{
'1/3': '@4xl:w-1/3',
Expand All @@ -64,6 +64,7 @@ export function StickySidebarLayout({
</div>
<div
className={clsx(
'min-w-0',
sidebarPosition === 'after' ? 'order-1' : 'order-2',
{
'1/3': '@4xl:w-2/3',
Expand Down

0 comments on commit 4169dd1

Please sign in to comment.