Skip to content

Commit

Permalink
* make small style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CalamityC committed Apr 8, 2024
1 parent c927122 commit c0d7348
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const PendingInvitations = ({ invitations }) => {
<div className="w-50">
{gettext(item.role).charAt(0).toUpperCase() + gettext(item.role).slice(1)}
</div>
<div className="w-25">
<div className="w-25 align-right">
<button className="btn btn-xs btn-success ml-10" onClick={() => { window.location.href = `${baseUrl}/projects/join/${item.project}` }}>{gettext('Accept')}</button>
<button className="btn btn-xs btn-danger ml-10" onClick={() => { window.location.href = `${baseUrl}/projects/cancel/${item.project}` }}>{gettext('Decline')}</button>
</div>
Expand Down
3 changes: 3 additions & 0 deletions rdmo/projects/assets/scss/projects.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ a.disabled {
.pl-20 {
padding-left: 20px;
}
.align-right {
text-align: right;
}

.form-group {
.react-select__control {
Expand Down

0 comments on commit c0d7348

Please sign in to comment.