diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cb723f7..455ea1c7 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added - Timestamps in log output +- Padding in dateheader mode of the calendar module ### Updated diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index cc5084fd..9c91afe5 100755 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -180,6 +180,7 @@ Module.register("calendar", { dateCell.colSpan = "3"; dateCell.innerHTML = dateAsString; + dateCell.style.paddingTop = "10px"; dateRow.appendChild(dateCell); wrapper.appendChild(dateRow);