Skip to content

Commit

Permalink
Admin: "users_icon" => "roles_icon"
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Jul 24, 2020
1 parent ba25043 commit 2833aa4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
6 changes: 2 additions & 4 deletions client/components/Admin/Admin.css
Expand Up @@ -45,12 +45,10 @@
content: "Admin";
}


.researcher:before {
content: "Researcher";
}


.facilitator:before {
content: "Facilitator";
}
Expand All @@ -60,8 +58,8 @@
}

@media only screen and (max-width: 767px) {
.users__icon {
opacity: 1;
.roles_icon {
opacity: .9;
color: rgba(0, 0, 0, 0.87);
width: 1.18em;
height: 1em;
Expand Down
10 changes: 5 additions & 5 deletions client/components/Admin/constants.jsx
@@ -1,34 +1,34 @@
export const SUPER_ADMIN = {
super_admin: {
className: 'users__col-small users__icon super',
className: 'users__col-small roles_icon super',
// content: 'Super Admin'
content: ''
}
};
export const ADMIN = {
admin: {
className: 'users__col-small users__icon admin',
className: 'users__col-small roles_icon admin',
// content: 'Admin'
content: ''
}
};
export const RESEARCHER = {
researcher: {
className: 'users__col-small users__icon researcher',
className: 'users__col-small roles_icon researcher',
// content: 'Researcher'
content: ''
}
};
export const FACILITATOR = {
facilitator: {
className: 'users__col-small users__icon facilitator',
className: 'users__col-small roles_icon facilitator',
// content: 'Facilitator'
content: ''
}
};
export const PARTICIPANT = {
participant: {
className: 'users__col-small users__icon participant',
className: 'users__col-small roles_icon participant',
// content: 'Participant'
content: ''
}
Expand Down

0 comments on commit 2833aa4

Please sign in to comment.