fix: font size
This commit is contained in:
@@ -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>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user