fix: font size

This commit is contained in:
2026-03-16 00:21:43 +01:00
parent c2db0b33d6
commit 7c7d470f15
2 changed files with 37 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ const BlockNoteViewWrapper = forwardRef<HTMLDivElement, React.ComponentProps<typ
function BlockNoteViewWrapper(props, ref) {
const { className, ref: _ref, ...rest } = props as React.ComponentProps<typeof BlockNoteView> & { ref?: unknown }
return (
<div ref={ref} className={className} style={{ minHeight: '100%', width: '100%' }}>
<div ref={ref} className={`logos-blocknote ${className ?? ''}`} style={{ minHeight: '100%', width: '100%' }}>
<BlockNoteView {...rest} />
</div>
)