fix: revision textarea background color (#966)

This commit is contained in:
Aman Harwara
2022-04-11 18:40:03 +05:30
committed by GitHub
parent d1df913578
commit 290c3badd0

View File

@@ -68,7 +68,7 @@ export const SelectedRevisionContent: FunctionComponent<SelectedRevisionContentP
{selectedRevision.payload.content.text.length ? (
<textarea
readOnly={true}
className="w-full h-full resize-none p-4 pt-0 border-0 color-text text-editor font-editor"
className="w-full h-full resize-none p-4 pt-0 border-0 bg-default color-text text-editor font-editor"
>
{selectedRevision.payload.content.text}
</textarea>