Skip to content

Commit

Permalink
fix(pagination): fix render issue in IE11 (#208)
Browse files Browse the repository at this point in the history
* fix(pagination): fix render issue in IE11

* fix(accordion): remove more initial usage;
  • Loading branch information
tw15egan authored and hellobrian committed Jun 28, 2017
1 parent e1e34ff commit ee3f429
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/components/accordion/_accordion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@include reset;
@include helvetica;
list-style: none;
width: 100%;
}

.bx--accordion__item {
Expand Down Expand Up @@ -66,7 +67,7 @@
}

.bx--accordion__item--active {
overflow: initial;
overflow: visible;

.bx--accordion__content {
padding-top: 1rem;
Expand Down
4 changes: 2 additions & 2 deletions src/components/date-picker/_flatpickr.scss
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,10 @@
font-family: inherit;
font-weight: 300;
line-height: inherit;
height: initial;
height: auto;
border: 0;
border-radius: 0;
vertical-align: initial;
vertical-align: baseline;
}
.flatpickr-current-month input.cur-year:focus {
outline: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/components/pagination/_pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $css--helpers: true;
display: none;

@include breakpoint('530px') {
display: initial;
display: block;
}
}

Expand Down

0 comments on commit ee3f429

Please sign in to comment.