diff --git a/src/calendar.ts b/src/calendar.ts index c9b659c42..0497c4061 100644 --- a/src/calendar.ts +++ b/src/calendar.ts @@ -394,7 +394,10 @@ export class Calendar { } content.push(`
`); - content.push("
__:__
"); + content.push("
"); + content.push(" __:__"); + content.push("
__:__
"); + content.push("
"); content.push("
"); content.push("
"); content.push(` ${event._MEDAL ? "🏅" : ""}`); diff --git a/src/today/template.html b/src/today/template.html index 868994667..9c0a02b16 100644 --- a/src/today/template.html +++ b/src/today/template.html @@ -86,7 +86,8 @@ if (!noc || nocs.includes(noc)) { if (now.day === start.day) { - element.querySelector(".time").textContent = start.toLocaleString(DateTime.TIME_24_SIMPLE); + element.querySelector(".time-start").textContent = start.toLocaleString(DateTime.TIME_24_SIMPLE); + element.querySelector(".time-end").textContent = end.toLocaleString(DateTime.TIME_24_SIMPLE); if (end < now) { if (end > fifteenMinuteAgo) { element.classList.add(cycleColor());