Skip to content

Commit

Permalink
Merge pull request #4388 from coralproject/fix/CORL-2920-community-ta…
Browse files Browse the repository at this point in the history
…ble-fallbacks-alignment

[CORL-2920]: Community table fallbacks alignment updates
  • Loading branch information
kabeaty authored Dec 6, 2023
2 parents b7d2c84 + 9047c81 commit c8c935b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
width: 100%;
justify-content: space-between;
padding: 0;
line-height: 1.14;
}

.arrowsIcon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,6 @@ const UserRoleChangeContainer: FunctionComponent<Props> = ({

const handleOnChangeMembershipScopes = useCallback(
async (siteIDs: string[]) => {
/* eslint-disable */
console.log("changing membership scopes");
await updateUserMembershipScopes({
userID: user.id,
membershipScopes: {
Expand Down
9 changes: 5 additions & 4 deletions client/src/core/client/admin/routes/Community/UserRow.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
.usernameColumn {
vertical-align: top;
vertical-align: middle;
word-break: break-word;
padding-top: 15px;
padding-bottom: 15px;
}
.emailColumn {
vertical-align: top;
vertical-align: middle;
word-break: break-word;
padding-top: 15px;
padding-bottom: 15px;
}
.memberSinceColumn {
vertical-align: top;
vertical-align: middle;
white-space: nowrap;
padding-top: 15px;
padding-bottom: 15px;
Expand All @@ -38,9 +38,10 @@
.deleted {
display: inline-block;
padding-left: var(--spacing-2);
color: #DC8400;
color: #dc8400;
}

.notAvailable {
color: var(--palette-text-100);
text-align: left;
}

0 comments on commit c8c935b

Please sign in to comment.