mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
more naming fixes
This commit is contained in:
parent
d096344980
commit
e99721f345
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue