diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-05-31 19:56:43 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-05-31 19:56:43 +0200 |
commit | 74a3c92a7efeffdbe8c14d34fc9f2e9749290b4f (patch) | |
tree | 122a566a678a72abcee06f2d9cecf1283310b9a4 | |
parent | 9c8d8fb9548348ef1354df329c2ac479bf3912bd (diff) |
fix size in monospace
-rw-r--r-- | themes/elenq/static/css/prism.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/elenq/static/css/prism.css b/themes/elenq/static/css/prism.css index 0f511af..48351b6 100644 --- a/themes/elenq/static/css/prism.css +++ b/themes/elenq/static/css/prism.css @@ -11,7 +11,8 @@ https://prismjs.com/download.html#themes=prism&languages=bash+clojure+latex+lisp code[class*="language-"], pre[class*="language-"] { background: none; - font-family: monospace; + font-family: "monospace"; + font-size: 0.9em; text-align: left; white-space: pre; word-spacing: normal; |