Fix white border around user avatar glitch (#320)
fix white border around user avatar
This commit is contained in:
parent
24823cb5e2
commit
1c5d55c425
@ -16,7 +16,7 @@ export default function Jazzicon({ size = 10, user, role }) {
|
||||
|
||||
return (
|
||||
<div
|
||||
className={`flex ${role === "user" ? "border-2 rounded-full" : ""}`}
|
||||
className={`flex ${role === "user" ? "user-reply" : ""}`}
|
||||
ref={divRef}
|
||||
/>
|
||||
);
|
||||
|
||||
@ -354,3 +354,7 @@ dialog::backdrop {
|
||||
|
||||
top: 100%;
|
||||
}
|
||||
|
||||
.user-reply>div:first-of-type {
|
||||
border: 2px solid white;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user