fix: css matches official more closely with new markdown handling

This commit is contained in:
Danny Avila 2023-03-27 09:55:24 -04:00
parent 7dc479e0a0
commit 3c23f16b98
2 changed files with 7 additions and 7 deletions

View file

@ -56,7 +56,7 @@ const code = React.memo((props) => {
});
const p = React.memo((props) => {
return <span className="whitespace-pre-wrap mb-2">{props?.children}</span>;
return <p className="whitespace-pre-wrap mb-2">{props?.children}</p>;
});
// const blinker = ({ node }) => {