Skip to content

Commit

Permalink
fixup! Fix discrepancy for autosuggest-emoji class
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire committed Nov 15, 2023
1 parent 6b679f1 commit b656a82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default class AutosuggestAccount extends ImmutablePureComponent {
const { account } = this.props;

return (
<div className='account small' title={account.get('acct')}>
<div className='account__avatar-wrapper'><Avatar account={account} size={24} /></div>
<div className='autosuggest-account' title={account.get('acct')}>
<div className='autosuggest-account-icon'><Avatar account={account} size={24} /></div>
<DisplayName account={account} inline />
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@
background: darken($ui-secondary-color, 10%);
}

> .account,
> .autosuggest-account,
> .autosuggest-emoji,
> .autosuggest-hashtag {
display: flex;
Expand Down Expand Up @@ -342,7 +342,7 @@
}
}

& > .account.small {
& > .autosuggest-account {
.display-name {
& > span {
color: $lighter-text-color;
Expand Down

0 comments on commit b656a82

Please sign in to comment.