Defaulted validation popup content to be centered.

This commit is contained in:
MattMo 2022-03-02 01:04:17 -08:00
parent bf7bd34567
commit 1b30a8cfdd

View File

@ -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();