Replies: 2 comments
-
I digged VSCode codebase and found it is impossible now.
@hediet |
Beta Was this translation helpful? Give feedback.
0 replies
-
BTW, if you do not warry about ugly styling, please try to disable shadow dom with ex. monaco.editor.create(document.getElementById('container'), {
value: "function hello() {\n\talert('Hello world!');\n}",
language: 'javascript',
useShadowDOM: false,
}); .monaco-menu {
font-size: 20px;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Context
Description
I know that it is possible to change the font-size of the EDITOR via:
monaco.editor.create(..., { fontSize: ... })
However, this does not seem to change the font size of the context-menu (from right click).
Is there a way to change the font size of the context-menu ?
Beta Was this translation helpful? Give feedback.
All reactions