Fixing users meta info for groups.

This commit is contained in:
mike12345567 2025-02-27 12:36:42 +00:00
parent 5c20b496b7
commit 33b8751d78
1 changed files with 4 additions and 3 deletions

View File

@ -706,7 +706,7 @@
> >
<div class="details"> <div class="details">
<GroupIcon {group} size="S" /> <GroupIcon {group} size="S" />
<div> <div class="group-name">
{group.name} {group.name}
</div> </div>
<div class="auth-entity-meta"> <div class="auth-entity-meta">
@ -935,6 +935,7 @@
color: var(--spectrum-global-color-gray-600); color: var(--spectrum-global-color-gray-600);
font-size: 12px; font-size: 12px;
white-space: nowrap; white-space: nowrap;
text-align: end;
} }
.auth-entity-access { .auth-entity-access {
@ -970,7 +971,7 @@
width: 100%; width: 100%;
} }
.auth-entity .user-email { .auth-entity .user-email, .group-name {
flex: 1 1 0; flex: 1 1 0;
min-width: 0; min-width: 0;
overflow: hidden; overflow: hidden;
@ -1073,7 +1074,7 @@
.user-groups { .user-groups {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: flex-start; /* or space-between */ justify-content: flex-start;
align-items: center; align-items: center;
gap: var(--spacing-m); gap: var(--spacing-m);
width: 100%; width: 100%;