This commit is contained in:
Dragon Fire
2021-04-24 11:58:46 -04:00
parent a87d44c52d
commit 1cc15bc59f
+1 -1
View File
@@ -110,7 +110,7 @@ module.exports = class AnalogClockCommand extends Command {
ctx.textBaseline = 'middle';
ctx.textAlign = 'center';
ctx.fillStyle = 'white';
ctx.fillText(meridiem, ctx.canvas.width - 100, ctx.canvas.height - 100);
ctx.fillText(meridiem, ctx.canvas.width - 75, ctx.canvas.height - 75);
return ctx;
}