Commit 7d9b521c693b59da5fa28130b5753afa0914e598

Authored by Leon
Committed by GitHub
1 parent fefcc5ee

fix(dashboard): fix workbench page style (#280)

src/views/dashboard/workbench/components/ShortCuts.vue
... ... @@ -7,7 +7,6 @@
7 7 <template v-for="item in shortCuts" :key="item.img">
8 8 <a-col :span="8" class="p-3 shortcuts__item">
9 9 <img :src="item.img" class="mb-2 shortcuts__item-img" />
10   - <br />
11 10 <span>{{ item.name }}</span>
12 11 </a-col>
13 12 </template>
... ... @@ -84,6 +83,8 @@
84 83  
85 84 &-img {
86 85 width: 36px;
  86 + margin-left: auto;
  87 + margin-right: auto;
87 88 }
88 89  
89 90 &-all {
... ...