Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions apps/docs/app/playground/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ function PlaygroundContent() {
>
{/* Left panel — controls (scrollable) */}
<div
className={`playground-scroll flex flex-col gap-4 overflow-hidden border-fd-border px-3 pb-4 transition-all duration-300 ease-out ${
className={`playground-scroll flex flex-col gap-4 border-fd-border px-3 pb-4 transition-all duration-300 ease-out ${
sidebarOpen
? "max-h-[40vh] border-b opacity-100 lg:max-h-none lg:border-b-0 lg:border-r lg:mb-4 lg:rounded-md"
: "max-h-0 border-b-0 opacity-0 lg:max-h-none lg:border-r-0"
? "max-h-[40vh] overflow-y-auto border-b opacity-100 lg:max-h-none lg:border-b-0 lg:border-r lg:mb-4 lg:rounded-md"
: "max-h-0 overflow-hidden border-b-0 opacity-0 lg:max-h-none lg:border-r-0"
}`}
>
<ChordSelector chordId={state.chordId} onChange={state.setChordId} />
Expand Down
Loading