summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2018-10-22 02:11:39 +0300
committerRasmus Andersson <rasmus@notion.se>2018-10-22 02:11:39 +0300
commit704e0678061a6ac2c7f3dc22a31da52e9c696f92 (patch)
treeec7a405e1b49a973645a3eecf02847d548f13a81 /docs
parent47005dfa197f9973b9fc6d4f753b7d364ee6c85d (diff)
downloadinter-704e0678061a6ac2c7f3dc22a31da52e9c696f92.tar.xz
website: rounding of dynamic tracking on front page
Diffstat (limited to 'docs')
-rw-r--r--docs/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.html b/docs/index.html
index 97a4f7b40..18931e636 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -577,7 +577,7 @@ var unitFormatters = [
return tracking.toFixed(3)
}],
['px', 'px', function(fontSize, tracking) {
- return (fontSize * tracking).toFixed(3)
+ return (fontSize * tracking).toFixed(1)
}],
['%', 'percent', function(fontSize, tracking) {
return (tracking * 100).toFixed(1)