From 5201de27694538c7d15a8fd0df6915219e4fe864 Mon Sep 17 00:00:00 2001 From: MattMo Date: Thu, 17 Jun 2021 09:41:36 -0700 Subject: [PATCH] Pushing the error message to the bottom of the elements. --- ignite-html-validate.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ignite-html-validate.js b/ignite-html-validate.js index 3637207..a0d4eba 100644 --- a/ignite-html-validate.js +++ b/ignite-html-validate.js @@ -33,6 +33,7 @@ function notify(target, type, msg, duration) { notification.classList.add("ignite-html-validate"); notification.classList.add(type); notification.style.setProperty("left", "50%"); + notification.style.setProperty("top", "100%"); notification.style.setProperty("position", "absolute"); notification.style.setProperty("transform", "translate(-50%, 0)"); notification.style.setProperty("display", "flex");