Merge pull request #1836 from akraus53/patch-2

Added a padding between days in dateheader mode
This commit is contained in:
Michael Teeuw 2019-12-28 19:41:15 +01:00 committed by GitHub
commit c6184769e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -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

View File

@ -180,6 +180,7 @@ Module.register("calendar", {
dateCell.colSpan = "3";
dateCell.innerHTML = dateAsString;
dateCell.style.paddingTop = "10px";
dateRow.appendChild(dateCell);
wrapper.appendChild(dateRow);