Skip to content

Commit

Permalink
Merge branch 'main' into refactor/auth-layout
Browse files Browse the repository at this point in the history
  • Loading branch information
anncwb authored Aug 31, 2024
2 parents 43375ce + a7d3220 commit 4523726
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/web-antd/src/views/demos/antd/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function notify(type: NotificationType) {
description="支持多语言,主题功能集成切换等"
title="Ant Design Vue组件使用演示"
>
<Card title="按钮">
<Card class="mb-5" title="按钮">
<Space>
<Button>Default</Button>
<Button type="primary"> Primary </Button>
Expand Down
6 changes: 5 additions & 1 deletion apps/web-ele/src/views/dashboard/workspace/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ const trendItems: WorkbenchTrendItem[] = [
<WorkbenchTrends :items="trendItems" class="mt-5" title="最新动态" />
</div>
<div class="w-full lg:w-2/5">
<WorkbenchQuickNav :items="quickNavItems" title="快捷导航" />
<WorkbenchQuickNav
:items="quickNavItems"
class="mt-5 lg:mt-0"
title="快捷导航"
/>
<WorkbenchTodo :items="todoItems" class="mt-5" title="待办事项" />
<AnalysisChartCard class="mt-5" title="访问来源">
<AnalyticsVisitsSource />
Expand Down
6 changes: 5 additions & 1 deletion apps/web-naive/src/views/dashboard/workspace/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ const trendItems: WorkbenchTrendItem[] = [
<WorkbenchTrends :items="trendItems" class="mt-5" title="最新动态" />
</div>
<div class="w-full lg:w-2/5">
<WorkbenchQuickNav :items="quickNavItems" title="快捷导航" />
<WorkbenchQuickNav
:items="quickNavItems"
class="mt-5 lg:mt-0"
title="快捷导航"
/>
<WorkbenchTodo :items="todoItems" class="mt-5" title="待办事项" />
<AnalysisChartCard class="mt-5" title="访问来源">
<AnalyticsVisitsSource />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ function handleMouseleave() {
</div>
<VbenScrollbar
:style="extraContentStyle"
class="border-border border-t py-2"
class="border-border py-2"
shadow
shadow-border
>
Expand Down
6 changes: 5 additions & 1 deletion playground/src/views/dashboard/workspace/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ const trendItems: WorkbenchTrendItem[] = [
<WorkbenchTrends :items="trendItems" class="mt-5" title="最新动态" />
</div>
<div class="w-full lg:w-2/5">
<WorkbenchQuickNav :items="quickNavItems" title="快捷导航" />
<WorkbenchQuickNav
:items="quickNavItems"
class="mt-5 lg:mt-0"
title="快捷导航"
/>
<WorkbenchTodo :items="todoItems" class="mt-5" title="待办事项" />
<AnalysisChartCard class="mt-5" title="访问来源">
<AnalyticsVisitsSource />
Expand Down

0 comments on commit 4523726

Please sign in to comment.