summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2020-01-17 22:17:36 +0100
committertomsmeding <tom.smeding@gmail.com>2020-01-17 22:17:36 +0100
commitd339830afc156f2a93c638df619a6ec1d8d1f71d (patch)
tree598cc7bd11634cb27bd27e66b4368d9c6dc37ed8
parentced5cdf8f69fa963b1292358255421cc4060455c (diff)
unicode: Fix font sizes on mobile
-rw-r--r--modules/unicode/index.html1
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);
}