diff --git a/multichat-overlay/script.js b/multichat-overlay/script.js
index 6518e16..484a09c 100644
--- a/multichat-overlay/script.js
+++ b/multichat-overlay/script.js
@@ -1611,10 +1611,11 @@ function FourthwallGiftDrawStarted(data) {
let contents = "";
// If the user ordered more than one item, write how many items they ordered
- contents += `
${itemName} Giveaway!
`;
+ contents += `🎁 ${itemName} Giveaway!
`;
titleDiv.innerHTML = contents;
contentDiv.innerHTML = `Type !join in the next ${durationSeconds} seconds for your chance to win!`;
+ //contentDiv.style.display = `none`;
AddMessageItem(instance, data.id);
}
@@ -1649,11 +1650,12 @@ function FourthwallGiftDrawEnded(data) {
let contents = "";
// If the user ordered more than one item, write how many items they ordered
- contents += `GIVEAWAY ENDED
`;
- contents += `Congratulations ${GetWinnersList(data.gifts)}!`
+ contents += `🥳 GIVEAWAY ENDED 🥳
`;
+ //contents += `Congratulations ${GetWinnersList(data.gifts)}!`
titleDiv.innerHTML = contents;
- contentDiv.innerHTML = `Click the link to redeem your ${itemName}!`;
+ contentDiv.innerHTML = `Congratulations ${GetWinnersList(data.gifts)}!`;
+ //contentDiv.style.display = `none`;
AddMessageItem(instance, data.id);
}
diff --git a/multichat-overlay/style.css b/multichat-overlay/style.css
index e1720ee..de3e0cf 100644
--- a/multichat-overlay/style.css
+++ b/multichat-overlay/style.css
@@ -232,7 +232,7 @@ li {
}
.fourthwall {
- background: linear-gradient(#181712bf, #10110dbf) !important;
+ background: linear-gradient(#466edbbf, #1c56f5bf) !important;
}
.blank {