mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-17 18:18:11 +00:00
Fix white border around user avatar glitch (#320)
fix white border around user avatar
This commit is contained in:
parent
24823cb5e2
commit
1c5d55c425
2 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue