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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function MobileWrapper({ children }: React.PropsWithChildren) {
<Sheet open={explorerOpen} onOpenChange={setExplorerOpen}>
<SheetBody
side="right"
className="border-l-0 bg-transparent"
className="border-l-0 bg-transparent [&>button]:hidden"
onClick={() => setExplorerOpen(false)}
>
<div
Expand All @@ -35,7 +35,7 @@ export function MobileWrapper({ children }: React.PropsWithChildren) {
<Sheet open={terminalOpen} onOpenChange={setTerminalOpen}>
<SheetBody
side="right"
className="border-l-0 bg-transparent"
className="border-l-0 bg-transparent [&>button]:hidden"
onClick={() => setExplorerOpen(false)}
>
<div
Expand Down
4 changes: 2 additions & 2 deletions apps/website/src/components/terminal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export function Terminal({ runtime }: Terminal.Props) {

return (
<section className="h-full">
<Tabs defaultValue="run" className="h-full">
<ScrollArea className="flex items-center whitespace-nowrap">
<Tabs defaultValue="run" className="h-full gap-0">
<ScrollArea className="flex items-center whitespace-nowrap rounded-full">
<TabsList className="h-10 w-full space-x-1 rounded-none border-b-2 bg-transparent px-0.5">
{(
[
Expand Down