more naming fixes

This commit is contained in:
Sacha Greif 2016-04-20 09:17:19 +09:00
parent d096344980
commit e99721f345
2 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ const UsersAvatar = ({user, size, link}) => {
const img = <img alt={Users.getDisplayName(user)} style={imgStyle} className="avatar" src={Avatar.getUrl(user)}/>;
return link ? <a style={aStyle} className="user-avatar" href={Users.getProfileUrl(user)}>{img}</a> : img;
return link ? <a style={aStyle} className="users-avatar" href={Users.getProfileUrl(user)}>{img}</a> : img;
}

View file

@ -176,10 +176,10 @@
@include flex-center;
}
font-size: $small-font;
.user-avatar{
.users-avatar{
margin-right: 5px;
}
.user-name, .posts-item-date, .posts-item-comments, .posts-stats, .post-actions{
.users-name, .posts-item-date, .posts-item-comments, .posts-stats, .post-actions{
margin-right: $hmargin;
}
}