We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c620540 commit 921a95eCopy full SHA for 921a95e
apps/dashboard/src/@/components/blocks/code/code-segment.client.tsx
@@ -86,7 +86,7 @@ export const CodeSegment: React.FC<CodeSegmentProps> = ({
86
return (
87
<div
88
className={
89
- "flex flex-col overflow-hidden rounded-lg border border-border"
+ "flex flex-col overflow-hidden rounded-lg border border-border grow"
90
}
91
>
92
{!hideTabs && (
@@ -106,7 +106,8 @@ export const CodeSegment: React.FC<CodeSegmentProps> = ({
106
107
{onlyTabs ? null : (
108
<CodeClient
109
- className="rounded-none border-none"
+ className="rounded-none border-none grow"
110
+ scrollableContainerClassName="h-full"
111
code={code}
112
lang={
113
isInstallCommand
0 commit comments