Skip to content

Commit

Permalink
feat: change font size in monaco editor
Browse files Browse the repository at this point in the history
  • Loading branch information
kuizuo committed Dec 28, 2023
1 parent 728346d commit 36785a3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion website/components/AstOutput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ watch(highlightRange, () => highlight(), {
automaticLayout: true,
theme: isDark ? 'vs-dark' : 'vs',
readOnly: true,
fontSize: 14,
fontSize: 12,
tabSize: 2,
minimap: {
enabled: false,
Expand Down
2 changes: 1 addition & 1 deletion website/components/CodeEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ onMounted(() => {
:options="{
automaticLayout: true,
theme: isDark ? 'vs-dark' : 'vs',
fontSize: 14,
fontSize: 12,
tabSize: 2,
lineNumbers: 'off',
lineDecorationsWidth: 0,
Expand Down
2 changes: 1 addition & 1 deletion website/components/DeObfuscatorOutput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function download() {
automaticLayout: true,
theme: isDark ? 'vs-dark' : 'vs',
readOnly: true,
fontSize: 14,
fontSize: 12,
tabSize: 2,
minimap: {
enabled: false,
Expand Down
2 changes: 1 addition & 1 deletion website/components/SourceCodeEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ onMounted(() => {
:options="{
automaticLayout: true,
theme: isDark ? 'vs-dark' : 'vs',
fontSize: 14,
fontSize: 12,
tabSize: 2,
minimap: {
enabled: false,
Expand Down

0 comments on commit 36785a3

Please sign in to comment.