Skip to content

Commit

Permalink
fix: restrict the maximum panel height size
Browse files Browse the repository at this point in the history
  • Loading branch information
malkja committed Oct 8, 2024
1 parent 0464b0b commit afce53e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 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-h-screen md:t-h-auto"
class="t-flex-1 t-max-h-[500px] md:t-h-auto"
@active-view="onActiveViewChange($event, i)"
/>
</div>
Expand Down

0 comments on commit afce53e

Please sign in to comment.