UI tweaks: gently nudges user to leverage rotating daily phrases.

This commit is contained in:
Aaron D. Lee
2025-12-29 11:31:01 -05:00
parent 5bf477f2ad
commit 0dc44e2d7b
5 changed files with 14 additions and 5 deletions

View File

@@ -269,7 +269,7 @@ function detectDayFromFilename(filename) {
function updateDayLabel(dayName) {
const label = document.getElementById('dayPhraseLabel');
if (label && dayName) {
label.innerHTML = `<i class="bi bi-chat-quote me-1"></i> ${dayName}'s Phrase`;
label.innerHTML = `<i class="bi bi-chat-quote me-1"></i>Provide <span class="day-of-week-highlight">${dayName}</span>'s Phrase`;
}
}