This commit is contained in:
DrMint 2022-06-12 13:54:57 +02:00
parent 1ee5ff1292
commit 1510366bc8
6 changed files with 150 additions and 153 deletions

View File

@ -31,10 +31,7 @@ export function ButtonGroup(props: Immutable<Props>): JSX.Element {
}, [children]); }, [children]);
return ( return (
<div <div ref={ref} className={`grid grid-flow-col ${className}`}>
ref={ref}
className={`grid grid-flow-col ${className}`}
>
{children} {children}
</div> </div>
); );

View File

@ -407,7 +407,7 @@ export default function Editor(props: Immutable<Props>): JSX.Element {
handleInput(textarea.value); handleInput(textarea.value);
}} }}
className="h-[70vh] w-full rounded-xl bg-mid !bg-opacity-40 p-8 className="h-[70vh] w-full rounded-xl bg-mid !bg-opacity-40 p-8
text-black font-mono outline-none" font-mono text-black outline-none"
value={markdown} value={markdown}
title="Input textarea" title="Input textarea"
/> />

View File

@ -119,7 +119,7 @@ mark {
} }
.formatted code { .formatted code {
@apply font-mono @apply font-mono;
} }
.formatted ul { .formatted ul {