Skip to content

Commit 7103a1c

Browse files
committed
Merge remote-tracking branch 'origin/develop' into fix-dex-subdomain
2 parents 6e326cd + 52345f9 commit 7103a1c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/layout/sidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export function Sidebar({ lens, currentPath = '/', isOpen = false, id, onClose }
231231
<>
232232
{isOpen && onClose && (
233233
<div
234-
className="fixed inset-0 z-30 bg-overlay md:hidden"
234+
className="fixed inset-0 top-14 z-30 bg-overlay md:hidden"
235235
aria-hidden="true"
236236
role="presentation"
237237
onClick={onClose}
@@ -243,7 +243,7 @@ export function Sidebar({ lens, currentPath = '/', isOpen = false, id, onClose }
243243
data-open={String(isOpen)}
244244
className={cn(
245245
'flex h-full w-64 flex-col bg-sidebar text-sidebar-foreground transition-transform duration-200',
246-
'max-md:fixed max-md:inset-y-0 max-md:left-0 max-md:z-40',
246+
'max-md:fixed max-md:top-14 max-md:bottom-0 max-md:left-0 max-md:z-40',
247247
!isOpen && 'max-md:-translate-x-full',
248248
)}
249249
>

0 commit comments

Comments
 (0)