aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/App.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index d5c94e1..d0d9a86 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -153,9 +153,10 @@ export default defineComponent({
},
tutPaneContainerStyles(): Record<string,string> {
return {
+ minHeight: (this.tutorialOpen ? this.uiOpts.tutorialPaneSz : 0) + 'px',
maxHeight: (this.tutorialOpen ? this.uiOpts.tutorialPaneSz : 0) + 'px',
transitionDuration: this.uiOpts.tileChgDuration + 'ms',
- transitionProperty: 'max-height',
+ transitionProperty: 'max-height, min-height',
overflow: 'hidden',
};
},