From e02a43d039961cf8e6a6245219bb9d95c1a4a3b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Florczak?= Date: Sat, 25 May 2019 07:58:44 +0200 Subject: [PATCH] Fix flex styles for IE11 Resolve: #87 --- src/Agile.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Agile.vue b/src/Agile.vue index 6816fb5..817afca 100644 --- a/src/Agile.vue +++ b/src/Agile.vue @@ -681,6 +681,8 @@ .agile__track { display: flex; + flex-direction: row; + flex-wrap: nowrap; } .agile__actions { @@ -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; } @@ -700,6 +706,8 @@ .agile__slide { display: block; + flex-grow: 1; + flex-shrink: 0; } .agile--fade .agile__slide {