Skip to content

Commit

Permalink
fix(month-view): stop events overflowing on ie11
Browse files Browse the repository at this point in the history
Fixes #501
  • Loading branch information
mattlewis92 committed Jun 22, 2018
1 parent 45444b8 commit 10ff7d5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/modules/month/calendar-month-view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@

.cal-day-cell {
min-height: 100px;

// ie11 hack for https://github.com/mattlewis92/angular-calendar/issues/501
@media all and (-ms-high-contrast: none) {
display: block;
}
}

.cal-day-cell:not(:last-child) {
Expand Down

0 comments on commit 10ff7d5

Please sign in to comment.