Skip to content

Commit

Permalink
fix: restore max height to h-screen while in large screen size
Browse files Browse the repository at this point in the history
  • Loading branch information
malkja committed Oct 8, 2024
1 parent a7902b5 commit 4260e69
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/panels/PanelsWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:key="`pc${i}`"
:panel="panel"
:active-view="getActiveView(i)"
class="t-flex-1 t-max-h-[500px] md:t-h-auto"
class="t-flex-1 t-max-h-[500px] md:t-max-h-screen md:t-h-screen md:t-h-auto"
@active-view="onActiveViewChange($event, i)"
/>
</div>
Expand All @@ -33,3 +33,5 @@ function getActiveView(panelIndex) {
return activeViews.value[panelIndex];
}
</script>


0 comments on commit 4260e69

Please sign in to comment.