Skip to content
Open
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
11 changes: 10 additions & 1 deletion docs/app/reflex_docs/templates/docpage/sidebar/sidebar.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,15 @@ def create_sidebar_section(
class_name="h-8 mb-2 flex items-center justify-start ml-[2.5rem]",
),
rx.el.ul(
*(
[
rx.el.li(
class_name="m-0 p-0 absolute left-[3rem] top-0 bottom-0 w-px bg-secondary-4 z-[-1] pointer-events-none !rounded-none list-none",
)
Comment thread
carlosabadia marked this conversation as resolved.
]
if connected_line
else []
),
*[
sidebar_item_comp(
item_index=item_index,
Expand All @@ -415,7 +424,7 @@ def create_sidebar_section(
],
class_name=ui.cn(
"m-0 ml-0 p-0 pl-0 w-full !bg-transparent !shadow-none rounded-[0px] flex flex-col list-none",
"gap-0" if connected_line else "gap-1",
"gap-0 relative" if connected_line else "gap-1",
),
),
class_name="m-0 p-0 flex flex-col items-start ml-0 w-full list-none",
Expand Down
Loading