- Commit
- 67a80b12711191ef0cace927a8509d4f99986917
- Parent
- d965afb9cb8ea103e76505635834477c5ef7dfd6
- Author
- Pablo <pablo-escobar@riseup.net>
- Date
Fixed a bug regarding discrepencies in the sizes of the fonts in the editor
A simple SVG markup editor for the web
Fixed a bug regarding discrepencies in the sizes of the fonts in the editor
1 file changed, 3 insertions, 4 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | css/styles.css | 7 | 3 | 4 |
diff --git a/css/styles.css b/css/styles.css @@ -140,9 +140,6 @@ body { height: 100%; margin-left: var(--indent); - font-family: 'IBM Plex Mono', 'EmojiOne Color', monospace; - font-size: 15pt; - line-height: 1.4em; outline: none; border: none; @@ -183,7 +180,9 @@ body { margin: auto; } -.elmsh { +.elmsh, #container #editor textarea { + font-family: 'IBM Plex Mono', 'EmojiOne Color', monospace; + font-size: 13pt; line-height: 1.4em; }