diff --git a/src/utils.ts b/src/utils.ts index f3d287f..df68295 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -46,7 +46,7 @@ export function drawText( maxWidth?: number; } ): Box { - juego.ctx.font = `${bold ? "bold " : ""}${size}rem sans-serif`; + juego.ctx.font = `${bold ? "bold " : ""}${size * 12}px sans-serif`; juego.ctx.textAlign = align; juego.ctx.textBaseline = baseline; juego.ctx.fillText(text, pos.x, pos.y, maxWidth);