From b65cca277e28375424260f50c7e2d1fe6bf02cb2 Mon Sep 17 00:00:00 2001 From: charlesh88 Date: Wed, 22 Aug 2018 17:54:34 -0700 Subject: [PATCH] Pane refactor styles WIP - WIP converting from width/height to flex-basis; --- src/ui/components/controls/pane.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ui/components/controls/pane.vue b/src/ui/components/controls/pane.vue index a5df79e9f2..b3b7406a66 100644 --- a/src/ui/components/controls/pane.vue +++ b/src/ui/components/controls/pane.vue @@ -474,11 +474,12 @@ export default { }, beforeMount() { this.type = this.$parent.type; - if (this.type === 'horizontal') { + this.styleProp = 'flex-basis'; +/* if (this.type === 'horizontal') { this.styleProp = 'width'; } else { this.styleProp = 'height'; - } + }*/ }, methods: { toggleCollapse: function () {