UX: Remove Helvetica from our font stack (#11876)

Arial is more consistently available across operating systems and aligns better.
This commit is contained in:
Kris
2021-02-05 17:01:21 -05:00
committed by GitHub
parent 015ea28778
commit ded0f5b4e5
12 changed files with 61 additions and 40 deletions
@@ -18,7 +18,7 @@ function renderIcon(canvas, img, count) {
canvas.height = canvas.width = img.width;
let ctx = canvas.getContext("2d");
ctx.font = `bold ${fontSize}px Helvetica, Arial, sans-serif`;
ctx.font = `bold ${fontSize}px Arial, sans-serif`;
if (count) {
ctx.globalAlpha = 0.4;