Skip to content

Commit

Permalink
Red buttons -> primary color on groups page (#1475)
Browse files Browse the repository at this point in the history
* Red buttons -> primary color on groups page

* Update GroupPage.tsx
  • Loading branch information
theosanderson authored Mar 25, 2024
1 parent 9152ca9 commit 25f6952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/components/User/GroupPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const InnerGroupPage: FC<GroupPageProps> = ({
</h1>
<button
onClick={() => handleOpenConfirmationDialog(username)}
className='object-right p-2 bg-red-500 text-white rounded'
className='object-right p-2 loculusColor text-white rounded px-4'
>
Leave group
</button>
Expand Down Expand Up @@ -181,7 +181,7 @@ const InnerGroupPage: FC<GroupPageProps> = ({
<span className='text-lg'>{user.name}</span>
<button
onClick={() => handleOpenConfirmationDialog(user.name)}
className='px-2 py-1 bg-red-500 text-white rounded'
className='px-2 py-1 loculusColor text-white rounded'
title='Remove user from group'
aria-label={`Remove User ${user.name}`}
>
Expand Down

0 comments on commit 25f6952

Please sign in to comment.