Skip to content

Commit 10ff7d5

Browse files
committed
fix(month-view): stop events overflowing on ie11
Fixes #501
1 parent 45444b8 commit 10ff7d5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/modules/month/calendar-month-view.scss

+5
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@
4545

4646
.cal-day-cell {
4747
min-height: 100px;
48+
49+
// ie11 hack for https://github.com/mattlewis92/angular-calendar/issues/501
50+
@media all and (-ms-high-contrast: none) {
51+
display: block;
52+
}
4853
}
4954

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

0 commit comments

Comments
 (0)