Skip to content

Commit 3ec1611

Browse files
authored
fix: dropdown overflow in markdown widget (#5879)
1 parent e5ad5e8 commit 3ec1611

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/netlify-cms-widget-markdown/src/MarkdownControl/VisualEditor.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ import schema from './schema';
1919
function visualEditorStyles({ minimal }) {
2020
return `
2121
position: relative;
22-
overflow: hidden;
23-
overflow-x: auto;
22+
overflow: auto;
2423
font-family: ${fonts.primary};
2524
min-height: ${minimal ? 'auto' : lengths.richTextEditorMinHeight};
2625
border-top-left-radius: 0;

0 commit comments

Comments
 (0)