1.首页表格支持手机端 2.修改雪花屏文字大小

This commit is contained in:
chuzhixin 2020-10-05 23:43:20 +08:00
parent c7a0c40bab
commit f7d960e8c3
2 changed files with 85 additions and 73 deletions

View File

@ -8,7 +8,7 @@
} }
.first-loading-wrp > h1 { .first-loading-wrp > h1 {
font-size: 30px; font-size: 24px;
font-weight: bolder; font-weight: bolder;
} }

View File

@ -12,7 +12,15 @@
/> />
<a-card class="version-information"> <a-card class="version-information">
<template v-slot:title> <template v-slot:title>系统信息</template>
<template v-slot:extra>
<a href="#">部署时间{{ updateTime }}</a>
</template>
<div class="version-information-table">
<table>
<tr>
<td>标星</td>
<td>
<a <a
target="_blank" target="_blank"
href="https://github.com/chuzhixin/vue-admin-beautiful/tree/vue3.0-antdv" href="https://github.com/chuzhixin/vue-admin-beautiful/tree/vue3.0-antdv"
@ -22,11 +30,10 @@
src="https://img.shields.io/github/stars/chuzhixin/vue-admin-beautiful?style=flat-square&label=Stars&logo=github" src="https://img.shields.io/github/stars/chuzhixin/vue-admin-beautiful?style=flat-square&label=Stars&logo=github"
/> />
</a> </a>
</template> </td>
<template v-slot:extra> <td>下载量统计</td>
<a href="#">部署时间:{{ updateTime }}</a> <td>敬请期待</td>
</template> </tr>
<table class="table">
<tr> <tr>
<td>vue</td> <td>vue</td>
<td>{{ dependencies["vue"] }}</td> <td>{{ dependencies["vue"] }}</td>
@ -72,6 +79,7 @@
<td colspan="3">9724353191139183756</td> <td colspan="3">9724353191139183756</td>
</tr> </tr>
</table> </table>
</div>
</a-card> </a-card>
</template> </template>
<script> <script>
@ -90,7 +98,10 @@
<style lang="less" scoped> <style lang="less" scoped>
.version-information { .version-information {
margin-top: @vab-margin; margin-top: @vab-margin;
.table { &-table {
width: 100%;
overflow: scroll;
table {
width: 100%; width: 100%;
color: #666; color: #666;
border-collapse: collapse; border-collapse: collapse;
@ -111,4 +122,5 @@
} }
} }
} }
}
</style> </style>