From 055729339bbc69a2c28a81f8bb366f11ddf3ac60 Mon Sep 17 00:00:00 2001 From: mkolesnikov Date: Fri, 6 Apr 2018 18:56:05 +0300 Subject: [PATCH] fix(layout): fix flexbug, same as in bcbfcc0 but works in IE11 too (#148) --- src/framework/theme/components/layout/layout.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/framework/theme/components/layout/layout.component.scss b/src/framework/theme/components/layout/layout.component.scss index 641ad94e41..f903cad49d 100644 --- a/src/framework/theme/components/layout/layout.component.scss +++ b/src/framework/theme/components/layout/layout.component.scss @@ -75,7 +75,7 @@ /deep/ nb-layout-column { order: 2; flex: 1 0; - width: 0; // this might be a strange workaround + min-width: 0; // fix for flexbug https://github.com/philipwalton/flexbugs#flexbug-1 &.left { order: 1; }