Rename .follow-button to .button--follow
The other classname is listed on Fanboy's Annoyances List
This commit is contained in:
parent
5807b8f823
commit
cf19366626
|
@ -104,7 +104,7 @@ class ActionButton extends ImmutablePureComponent {
|
||||||
// Follow & Unfollow
|
// Follow & Unfollow
|
||||||
return (<Button
|
return (<Button
|
||||||
disabled={account.getIn(['relationship', 'blocked_by'])}
|
disabled={account.getIn(['relationship', 'blocked_by'])}
|
||||||
className={classNames('follow-button', {
|
className={classNames('button--follow', {
|
||||||
'button--destructive': account.getIn(['relationship', 'following']),
|
'button--destructive': account.getIn(['relationship', 'following']),
|
||||||
})}
|
})}
|
||||||
onClick={this.handleFollow}
|
onClick={this.handleFollow}
|
||||||
|
|
|
@ -143,7 +143,7 @@ a.button {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.follow-button {
|
.button--follow {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
Loading…
Reference in New Issue