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
16 changes: 16 additions & 0 deletions apps/docs/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -238,3 +238,19 @@
@apply pointer-events-auto translate-y-0 opacity-100;
}
}

/* Playground controls drawer (mobile only, same pattern as docs sidebar) */
.playground-controls-drawer {
@apply bg-background fixed top-16 right-4 left-4 z-[60];
@apply max-h-[80dvh] overflow-y-auto;
@apply -translate-y-2;
@apply rounded-xl border border-[rgb(0_0_0_/_0.15)] bg-clip-padding p-4;
@apply opacity-0 shadow-2xl;
@apply pointer-events-none transition-all duration-200 ease-out;
@apply [scrollbar-color:transparent_transparent] [scrollbar-gutter:stable] [scrollbar-width:thin];
@apply hover:[scrollbar-color:auto];

&.is-open {
@apply pointer-events-auto translate-y-0 opacity-100;
}
}
Loading