diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-05-12 01:54:21 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-05-12 01:59:07 -0700 |
commit | dfac0ec143c2c6cae9bf9cf98673b5bf3a870e1c (patch) | |
tree | b6bae75d9a5ec09d522ce3f5231c9d1f4a456538 /web/static/index.html | |
parent | d0a2eaecd6c1ef61fbb841d726c183923b903f0c (diff) | |
download | dartboat-dfac0ec143c2c6cae9bf9cf98673b5bf3a870e1c.tar.gz dartboat-dfac0ec143c2c6cae9bf9cf98673b5bf3a870e1c.tar.xz |
web: use subset font for dartboard numbers
Inter is under a permissive font and we use the number glyphs only, so
it makes sense to use a subset font to avoid loading the rest of the
glyphs.
Also removing the name table from the icons font to further reduce size.
Diffstat (limited to 'web/static/index.html')
-rw-r--r-- | web/static/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/static/index.html b/web/static/index.html index 7aa2b73..7222f64 100644 --- a/web/static/index.html +++ b/web/static/index.html @@ -3,7 +3,7 @@ <head> <title>dartboat™</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> - <meta name="viewport" content="width=device-width, user-scalable=no"> + <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="style.css"> <script src="dartboat.js"></script> <script src="dartboat_wasm.js"></script> |