From 8ae6d2cb381479c104bc021b357548340f89aeca Mon Sep 17 00:00:00 2001 From: w Date: Wed, 16 Jul 2025 22:40:03 -0300 Subject: [PATCH] Adjust positioning of power, charm, and wit text in drawCard function for better alignment --- web/templates/card_creator.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/templates/card_creator.html b/web/templates/card_creator.html index 4416567..fd0659e 100644 --- a/web/templates/card_creator.html +++ b/web/templates/card_creator.html @@ -110,9 +110,9 @@ function drawCard() { // Stats ctx.font = "30px sans-serif"; - ctx.fillText(powerInput.value, 230, 823); - ctx.fillText(charmInput.value, 370, 823); - ctx.fillText(witInput.value, 515, 823); + ctx.fillText(powerInput.value, 220, 823); + ctx.fillText(charmInput.value, 373, 823); + ctx.fillText(witInput.value, 512, 823); // Flavor ctx.font = "italic 24px serif";