Skip to content

Commit

Permalink
fix tool panel views overflow bug
Browse files Browse the repository at this point in the history
If we have a long list of tool panel views, the views at the
bottom are hidden and unreachable. Added an `overflow: auto`
property to deal with this.
  • Loading branch information
ahmedhamidawan committed Nov 30, 2023
1 parent 64a813e commit 4d0c1d5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions client/src/components/Panels/Menus/PanelViewMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,11 @@ export default {
},
};
</script>

<style lang="scss">
.dropdown-menu {
overflow: auto;
max-height: 50vh;
min-width: 100%;
}
</style>

0 comments on commit 4d0c1d5

Please sign in to comment.