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 e2c5f1b commit ee77056Copy full SHA for ee77056
beta/src/components/MDX/Sandpack/Console.tsx
@@ -106,10 +106,10 @@ export const SandpackConsole = () => {
106
<div
107
key={id}
108
className={cn(
109
- 'last:border-none border-b dark:border-gray-700 text-md p-1 pl-2 leading-6 font-mono',
+ 'last:border-none border-b dark:border-gray-700 text-md p-1 pl-2 leading-6 font-mono min-h-[32px]',
110
`console-${getType(method)}`
111
)}>
112
- <span className={cn('console-message')}>
+ <span className="console-message">
113
{data.map((msg, index) => {
114
if (typeof msg === 'string') {
115
return <span key={`${msg}-${index}`}>{msg}</span>;
0 commit comments