Skip to content

Commit

Permalink
fix: the overflow tab cannot be fully display
Browse files Browse the repository at this point in the history
  • Loading branch information
tiny-craft committed Jun 4, 2024
1 parent 028a240 commit 6eeb701
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/AppContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const onKeyShortcut = (e) => {
<div v-show="tabStore.nav === 'browser'" class="app-toolbar-tab flex-item-expand">
<content-value-tab />
</div>
<div class="flex-item-expand"></div>
<div class="flex-item-expand" style="min-width: 15px"></div>
<!-- simulate window control buttons -->
<toolbar-control-widget
v-if="!isMacOS()"
Expand Down Expand Up @@ -248,6 +248,7 @@ const onKeyShortcut = (e) => {
align-self: flex-end;
margin-bottom: -1px;
margin-left: 3px;
overflow: auto;
}
#app-content {
Expand Down

0 comments on commit 6eeb701

Please sign in to comment.