Converted pop-up boxes to use css flex

This commit is contained in:
Daniel Xie
2018-08-12 14:45:35 -05:00
parent bb4094f879
commit d556af0fd8
9 changed files with 62 additions and 17 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ function yesNoBoxCreate(txt) {
var c = document.getElementById("yes-no-box-container");
if (c) {
c.style.display = "block";
c.style.display = "flex";
} else {
console.log("ERROR: Container not found for YesNoBox");
}
@@ -75,7 +75,7 @@ function yesNoTxtInpBoxCreate(txt) {
var c = document.getElementById("yes-no-text-input-box-container");
if (c) {
c.style.display = "block";
c.style.display = "flex";
} else {
console.log("ERROR: Container not found for YesNoTextInputBox");
}