Skip to content

Commit d15f21b

Browse files
author
vikasrohit
authored
Merge pull request #493 from appirio-tech/feature/owner-change-modal-styling
Github issue #492 [Team Management] Buttons are not center aligned in…
2 parents fe691bb + 06e8bb5 commit d15f21b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/components/TeamManagement/OwnerModal.jsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@ import React, {PropTypes} from 'react'
33
const OwnerModal = ({member, onCancel, onConfirm}) => {
44
return (
55
<div className="modal">
6-
<div className="modal-title center">
6+
<div className="modal-title">
77
Assign member as owner
88
</div>
99
<div className="modal-body">
10-
<p className="message center">
10+
<p className="message">
1111
This will make <strong>{member.name}</strong> the project owner. Do you still want to proceed?
1212
</p>
1313

14-
<div className="button-area">
14+
<div className="button-area flex center">
1515
<button className="tc-btn tc-btn-default tc-btn-sm btn-cancel" onClick={onCancel}>Cancel</button>
16-
{' '}
1716
<button className="tc-btn tc-btn-primary tc-btn-sm" onClick={onConfirm}>Assign as owner</button>
1817
</div>
1918
</div>

0 commit comments

Comments
 (0)