style(layout): update panel border-radius to rounded-xl

This commit is contained in:
cfngc4594 2025-03-09 14:31:26 +08:00
parent e224fae210
commit 3a75c3d415

View File

@ -17,17 +17,17 @@ export default function PlaygroundLayout({
<PlaygroundHeader /> <PlaygroundHeader />
<main className="flex flex-grow overflow-y-hidden p-2.5 pt-0"> <main className="flex flex-grow overflow-y-hidden p-2.5 pt-0">
<ResizablePanelGroup direction="horizontal" className="relative h-full flex"> <ResizablePanelGroup direction="horizontal" className="relative h-full flex">
<ResizablePanel defaultSize={50} className="border border-muted rounded-3xl"> <ResizablePanel defaultSize={50} className="border border-muted rounded-xl">
{problem} {problem}
</ResizablePanel> </ResizablePanel>
<ResizableHandle className="mx-1 bg-transparent hover:bg-blue-500" /> <ResizableHandle className="mx-1 bg-transparent hover:bg-blue-500" />
<ResizablePanel defaultSize={50}> <ResizablePanel defaultSize={50}>
<ResizablePanelGroup direction="vertical"> <ResizablePanelGroup direction="vertical">
<ResizablePanel defaultSize={50} className="border border-muted rounded-3xl"> <ResizablePanel defaultSize={50} className="border border-muted rounded-xl">
{workspace} {workspace}
</ResizablePanel> </ResizablePanel>
<ResizableHandle className="my-1 bg-transparent hover:bg-blue-500" /> <ResizableHandle className="my-1 bg-transparent hover:bg-blue-500" />
<ResizablePanel defaultSize={50} className="border border-muted rounded-3xl"> <ResizablePanel defaultSize={50} className="border border-muted rounded-xl">
{terminal} {terminal}
</ResizablePanel> </ResizablePanel>
</ResizablePanelGroup> </ResizablePanelGroup>