Skip to content

Commit

Permalink
修复顶部相关布局时,移动端下工具栏不显示
Browse files Browse the repository at this point in the history
  • Loading branch information
hooray committed Sep 23, 2024
1 parent fb73840 commit ecc7ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/components/Topbar/Toolbar/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const settingsStore = useSettingsStore()
<div class="h-full flex items-center of-hidden pl-2 pr-16" style="mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 50px), transparent);">
<LeftSide />
</div>
<div v-if="['side', 'single'].includes(settingsStore.settings.menu.mode)" class="h-full flex items-center px-2">
<div v-if="['side', 'single'].includes(settingsStore.settings.menu.mode) || settingsStore.mode === 'mobile'" class="h-full flex items-center px-2">
<RightSide />
</div>
</div>
Expand Down

0 comments on commit ecc7ed3

Please sign in to comment.