This commit is contained in:
2023-07-10 23:58:27 +08:00
parent c79e4e0bbb
commit 35918f5f10
8 changed files with 205 additions and 26 deletions

View File

@@ -16,9 +16,11 @@
<div style="display: flex;flex-direction: row;">
<el-avatar style="background-color: transparent" shape="square" :size="70" :src="github.avatar_url"></el-avatar>
<div style="display: flex;flex-direction: column;justify-content: space-between;margin-left: 10px">
<span v-if="projectName" style="font-size: 30px;color: black;font-weight: bold;display: flex;justify-content: flex-start;text-align: left">
<el-link :underline="false" :href="projectUrl" target="_blank" type="primary">
<span class="title" v-if="projectName" style="font-size: 30px;color: black;font-weight: bold;display: flex;justify-content: flex-start;text-align: left">
{{ briefTopName }}
</span>
</el-link>
<span style="text-align: left;display: flex;flex-direction:row;justify-content: flex-start;font-size: 20px;color: rgb(107 114 128);">
{{projectTitle}}
</span>
@@ -41,7 +43,7 @@
</div>
<div style="display: flex;flex-direction: row;margin-top: 10px;justify-content: space-between">
<div style="width: 250px;height: 60px;">
<img :src="'https://starchart.cc/'+projectName+'.svg'" style="width: 250px;height: 60px;">
<img v-if="projectName" :src="'https://starchart.cc/'+projectName+'.svg'" style="width: 250px;height: 60px;">
</div>
<div style="display: flex;flex-direction: row;align-items: center;">
<el-dropdown>
@@ -936,4 +938,7 @@ export default {
::v-deep .el-page-header__content{
flex:1;
}
::v-deep .title:hover{
color: #00b2ff !important;
}
</style>