Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-community-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
yyq
2019-06-12 11:37:15 +0800
Commit
d81ae26abd6067edbd527d044a3ff81c14305fed
1 parent
518051ef
fix list style
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
18 deletions
apps/components/widgets/widget-avatar.vue
apps/pages/article/components/article/article-item2.vue
apps/pages/userpage/components/author-article-item.vue
apps/pages/userpage/components/author.vue
apps/components/widgets/widget-avatar.vue
View file @
d81ae26
...
...
@@ -63,7 +63,7 @@ export default {
break;
}
return
`${className}${this.small ? '-small' : ''}`
;
return
className ? `${className}${this.small ? '-small' : ''}` : ''
;
}
},
watch: {
...
...
apps/pages/article/components/article/article-item2.vue
View file @
d81ae26
...
...
@@ -224,15 +224,14 @@ export default {
}
.avatar {
width: 40px;
height: 40px;
width: 20PX;
height: 20PX;
margin-right: 12px;
display: block;
}
.name {
max-width: 170px;
display: inline-block;
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
...
...
apps/pages/userpage/components/author-article-item.vue
View file @
d81ae26
...
...
@@ -173,22 +173,21 @@ export default {
padding: 20px;
}
.avatar {
width: 40px;
height: 40px;
display: inline-block;
vertical-align: middle;
.auther {
display: flex;
align-items: center;
}
> img {
width: 100%;
height: 100%;
}
.avatar {
width: 20PX;
height: 20PX;
margin-right: 10px;
display: block;
}
.name {
max-width: 170px;
display: inline-block;
vertical-align: middle;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
...
...
apps/pages/userpage/components/author.vue
View file @
d81ae26
...
...
@@ -695,11 +695,10 @@ export default {
background-color: #f7f7f7;
}
.loading {
padding: 20px 0;
.load-icon > span
{
/deep/ .cube-loading-spinners
{
margin: auto;
}
...
...
Please
register
or
login
to post a comment