fix(playground): add border-muted class to TabsContent for better visibility

This commit is contained in:
cfngc4594 2025-02-23 20:37:04 +08:00
parent 88be7cbf58
commit 22bda1f730
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ export default function DescriptionLayout({ children }: DescriptionLayoutProps)
</TabsList>
<ScrollBar orientation="horizontal" />
</ScrollArea>
<TabsContent value="description" className="mt-0 border-t">
<TabsContent value="description" className="mt-0 border-t border-muted">
{children}
</TabsContent>
</Tabs>

View File

@ -25,7 +25,7 @@ export default function WorkspaceLayout({ children }: WorkspaceLayoutProps) {
</TabsList>
<ScrollBar orientation="horizontal" />
</ScrollArea>
<TabsContent value="code" className="mt-0 border-t">
<TabsContent value="code" className="mt-0 border-t border-muted">
{children}
</TabsContent>
</Tabs>