Usar px en vez de rem para el tamaño del texto para funcionar en WebKit

This commit is contained in:
Nulo 2021-07-01 23:13:13 +00:00
parent 12530e5aab
commit 2d9a91487c

View file

@ -46,7 +46,7 @@ export function drawText(
maxWidth?: number; maxWidth?: number;
} }
): Box { ): 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.textAlign = align;
juego.ctx.textBaseline = baseline; juego.ctx.textBaseline = baseline;
juego.ctx.fillText(text, pos.x, pos.y, maxWidth); juego.ctx.fillText(text, pos.x, pos.y, maxWidth);