fix: the overflow tab cannot be fully display

This commit is contained in:
Lykin 2024-06-04 10:43:49 +08:00
parent 028a240f49
commit 6eeb701439
1 changed files with 2 additions and 1 deletions

View File

@ -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()"
@ -248,6 +248,7 @@ const onKeyShortcut = (e) => {
align-self: flex-end;
margin-bottom: -1px;
margin-left: 3px;
overflow: auto;
}
#app-content {