From 1b30a8cfddf4815a162db14e28555efdd783fa48 Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 2 Mar 2022 01:04:17 -0800 Subject: [PATCH] Defaulted validation popup content to be centered. --- ignite-html-validate.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ignite-html-validate.js b/ignite-html-validate.js index 5ddc4ef..48d85b4 100644 --- a/ignite-html-validate.js +++ b/ignite-html-validate.js @@ -60,6 +60,7 @@ function notify(target, type, msg, duration) { content.style.setProperty("border-radius", "0.5em"); content.style.setProperty("box-shadow", "0 2px 2px rgba(0,0,0,0.4)"); content.style.setProperty("color", "#fff"); + content.style.setProperty("text-align", "center"); if (msg instanceof Function) { content.innerHTML = msg();