diff options
author | tomsmeding <tom.smeding@gmail.com> | 2020-01-17 22:17:36 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2020-01-17 22:17:36 +0100 |
commit | d339830afc156f2a93c638df619a6ec1d8d1f71d (patch) | |
tree | 598cc7bd11634cb27bd27e66b4368d9c6dc37ed8 | |
parent | ced5cdf8f69fa963b1292358255421cc4060455c (diff) |
unicode: Fix font sizes on mobile
-rw-r--r-- | modules/unicode/index.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/unicode/index.html b/modules/unicode/index.html index 44bd323..9335081 100644 --- a/modules/unicode/index.html +++ b/modules/unicode/index.html @@ -71,6 +71,7 @@ function populateCharacter(div, row) { div.appendChild(span); span = document.createElement("span"); + span.setAttribute("style", "display: inline-block;"); span.appendChild(document.createTextNode(row[1])); div.appendChild(span); } |