Skip to content

Commit

Permalink
fix(MenuBar): Only preserve 100px for the right section
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Feb 1, 2023
1 parent a0f9aa6 commit 4591c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Menu/MenuBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export default {
.text-menubar__slot {
justify-content: flex-end;
display: flex;
min-width: max(0px, min(200px, (100% - var(--text-editor-max-width)) / 2));
min-width: max(0px, min(100px, (100% - var(--text-editor-max-width)) / 2));
}

&.text-menubar--is-workspace {
Expand Down

0 comments on commit 4591c69

Please sign in to comment.