Skip to content

Commit

Permalink
Improve onhover for group member listing
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufsallam64 committed Oct 18, 2023
1 parent 06d204d commit 743f963
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -660,10 +660,14 @@ export default class GroupSettingsMembers extends LitElement {
: null} -->
<li
class=${clsx(
'group hover:bg-raised-bg px-2 rounded-xl flex flex-row place-content-between space-x-3 py-3 ',
'group px-2 rounded-xl flex flex-row place-content-between space-x-3 py-3 ',
ident.identityId === this.group.ownerIdentityId
? 'order-[-100]'
: ''
: '',
this.group.ownerIdentityId === global.currentIdentity.identityId && ident.identityId !== global.currentIdentity.identityId
? 'hover:bg-raised-bg'
: '',
)}
>
<div class="flex flex-row">
Expand Down

0 comments on commit 743f963

Please sign in to comment.