Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

Commit

Permalink
Fix flex styles for IE11
Browse files Browse the repository at this point in the history
Resolve: #87
  • Loading branch information
Łukasz Florczak committed May 25, 2019
1 parent f89762f commit e02a43d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Agile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,8 @@
.agile__track {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.agile__actions {
Expand All @@ -691,6 +693,10 @@
.agile__slides {
align-items: center;
display: flex;
flex-direction: row;
flex-grow: 1;
flex-shrink: 0;
flex-wrap: nowrap;
justify-content: flex-start;
}
Expand All @@ -700,6 +706,8 @@
.agile__slide {
display: block;
flex-grow: 1;
flex-shrink: 0;
}
.agile--fade .agile__slide {
Expand Down

0 comments on commit e02a43d

Please sign in to comment.