Optimize landscape layout: 4-column grid, transport icons, improved sizing and spacing

This commit is contained in:
2025-12-31 16:27:55 +01:00
parent a0c997f7d4
commit 738a422dc9
14 changed files with 2173 additions and 1629 deletions

View File

@@ -82,10 +82,10 @@ class Clock {
// Format and display the time
this.timeElement.innerHTML = this.formatTime(now);
// Format and display the date
this.dateElement.textContent = " " + this.formatDate(now);
// Format and display the date (with a separator)
this.dateElement.textContent = " " + this.formatDate(now);
// Make sure the date element is visible
// Make sure the date element is visible and inline
this.dateElement.style.display = 'inline-block';
}