fix welcome message styling

This commit is contained in:
jheaps
2024-11-22 15:26:47 -07:00
parent 8ae65986d4
commit f296ef8ae1
3 changed files with 119 additions and 3 deletions
+4
View File
@@ -1,3 +1,7 @@
window.onload = function () {
const element = document.getElementById("WelcomeMessage");
element.style.display = "none"; // Trigger reflow
element.offsetHeight; // Force reflow
element.style.display = ""; // Restore the original display
typeText("#WelcomeMessage", "Hey! You found me! Since I have your attention, why don't I tell you about myself?");
}