diff --git a/src-web/components/MarkdownEditor.tsx b/src-web/components/MarkdownEditor.tsx index cff9f2e6..1edce0c9 100644 --- a/src-web/components/MarkdownEditor.tsx +++ b/src-web/components/MarkdownEditor.tsx @@ -46,7 +46,7 @@ export function MarkdownEditor({ defaultValue.length === 0 ? (

No description

) : ( -
+
{defaultValue}
); @@ -59,6 +59,7 @@ export function MarkdownEditor({ className={classNames( 'group/markdown', 'relative w-full h-full pt-1.5 rounded-md gap-x-1.5', + 'min-w-0', // Not sure why this is needed className, )} > diff --git a/src-web/components/Prose.css b/src-web/components/Prose.css index 587c0895..d84877d7 100644 --- a/src-web/components/Prose.css +++ b/src-web/components/Prose.css @@ -116,7 +116,7 @@ pre { @apply bg-surface-highlight text-text !important; - @apply px-4 py-3 rounded-md; + @apply pl-4 py-3 rounded-md; @apply overflow-auto whitespace-pre; @apply text-editor font-mono;