fixed border of status badge (#8568)

pull/8605/head^2
Peer Richelsen 2023-04-30 08:56:09 +01:00 committed by GitHub
parent 221c8b75bc
commit ea676907b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 && (