fix(userprofile): entry style touch up

This commit is contained in:
trashtemp
2022-01-15 23:00:12 +01:00
parent e6684b8f78
commit 59fb8a3c0f
2 changed files with 4 additions and 2 deletions

View File

@@ -141,14 +141,15 @@
} }
.entry { .entry {
gap: 8px; gap: 12px;
font-weight: 500;
min-width: 0; min-width: 0;
padding: 12px; padding: 12px;
display: flex; display: flex;
cursor: pointer; cursor: pointer;
align-items: center; align-items: center;
transition: background-color 0.1s; transition: background-color 0.1s;
color: var(--secondary-foreground); color: var(--foreground);
border-radius: var(--border-radius); border-radius: var(--border-radius);
background-color: var(--secondary-background); background-color: var(--secondary-background);

View File

@@ -371,6 +371,7 @@ export const UserProfile = observer(
<UserIcon <UserIcon
size={32} size={32}
target={x} target={x}
status
/> />
<span>{x.username}</span> <span>{x.username}</span>
</div> </div>