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:
parent
b16cdd6e96
commit
2eda23fd06
@ -140,7 +140,10 @@ export default function CodeBlockEditor({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{minimal ? (
|
{minimal ? (
|
||||||
<div style={{ maxWidth: '300px' }}>
|
<div
|
||||||
|
style={{ maxWidth: '300px' }}
|
||||||
|
className='minimal-code-block-editor'
|
||||||
|
>
|
||||||
<Link
|
<Link
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setCodeMirrorOpen(true)
|
setCodeMirrorOpen(true)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user