Skip to content

Commit

Permalink
fix: add updated monospace font for Windows (#5091)
Browse files Browse the repository at this point in the history
  • Loading branch information
InspiredGuy committed Mar 15, 2023
1 parent e0d4ea9 commit a981972
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/css/editor.css.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = `
position: relative;
overflow: hidden;
padding: 0;
font: 12px/normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
font: 12px/normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Source Code Pro', 'source-code-pro', monospace;
direction: ltr;
text-align: left;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
Expand Down
2 changes: 1 addition & 1 deletion src/ext/static.css.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = `.ace_static_highlight {
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'Droid Sans Mono', monospace;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Source Code Pro', 'source-code-pro', 'Droid Sans Mono', monospace;
font-size: 12px;
white-space: pre-wrap
}
Expand Down

0 comments on commit a981972

Please sign in to comment.