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]);
return (
<div
ref={ref}
className={`grid grid-flow-col ${className}`}
>
<div ref={ref} className={`grid grid-flow-col ${className}`}>
{children}
</div>
);

View File

@ -407,7 +407,7 @@ export default function Editor(props: Immutable<Props>): JSX.Element {
handleInput(textarea.value);
}}
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}
title="Input textarea"
/>

View File

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