fixed border of status badge (#8568)
parent
221c8b75bc
commit
ea676907b2
|
@ -299,10 +299,10 @@ function UserDropdown({ small }: { small?: boolean }) {
|
|||
/>
|
||||
}
|
||||
{!user.away && (
|
||||
<div className="absolute bottom-0 right-0 h-3 w-3 rounded-full border-2 border-white bg-green-500" />
|
||||
<div className="absolute bottom-0 right-0 h-3 w-3 rounded-full border-2 border-muted bg-green-500" />
|
||||
)}
|
||||
{user.away && (
|
||||
<div className="absolute bottom-0 right-0 h-3 w-3 rounded-full border-2 border-white bg-yellow-500" />
|
||||
<div className="absolute bottom-0 right-0 h-3 w-3 rounded-full border-2 border-muted bg-yellow-500" />
|
||||
)}
|
||||
</span>
|
||||
{!small && (
|
||||
|
|
Loading…
Reference in New Issue