Skip to content

Commit

Permalink
adds minimum width to scheme page items (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongundel authored Dec 14, 2024
1 parent 1becfe3 commit 1550a20
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions arches_lingo/src/arches_lingo/pages/SchemePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ const getRef = (el: object | null, index: number) => {
<Splitter>
<SplitterPanel
v-if="sectionVisible"
:size="75"
:size="66"
:min-size="33"
>
<template
v-for="(component, index) in components"
Expand All @@ -79,7 +80,8 @@ const getRef = (el: object | null, index: number) => {
</SplitterPanel>
<SplitterPanel
v-if="editorVisible"
:size="25"
:size="33"
:min-size="33"
>
<SchemeEditor
v-if="editorTab"
Expand Down

0 comments on commit 1550a20

Please sign in to comment.