Enhance CodeBlockEditor styling for minimal mode

- Added a class name 'minimal-code-block-editor' to the div in minimal mode for improved styling and potential CSS targeting.
This commit is contained in:
Tom Butcher 2026-07-25 01:35:24 +01:00
parent b16cdd6e96
commit 2eda23fd06

View File

@ -140,7 +140,10 @@ export default function CodeBlockEditor({
return (
<>
{minimal ? (
<div style={{ maxWidth: '300px' }}>
<div
style={{ maxWidth: '300px' }}
className='minimal-code-block-editor'
>
<Link
onClick={() => {
setCodeMirrorOpen(true)