Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/app/src/pages/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,10 @@ export default function Layout(props: ParentProps) {
const homedir = createMemo(() => sync.data.path.home)

return (
<div class="flex h-full w-full overflow-hidden">
<div classList={{
"flex h-full w-full overflow-hidden": true,
"mt-10": sidebarProps.mobile,
}}>
<div class="w-16 shrink-0 bg-background-base flex flex-col items-center overflow-hidden">
<div class="flex-1 min-h-0 w-full">
<DragDropProvider
Expand Down
Loading