File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const SelectUsersAndRoleStep = ({
5050 return (
5151 < div className = "select-users-and-role-step" >
5252 { /* Users Section */ }
53- < h3 className = "mb-2" > { intl . formatMessage ( messages [ 'wizard.step1.users.heading' ] ) } </ h3 >
53+ < h3 className = "text-primary mb-2" > { intl . formatMessage ( messages [ 'wizard.step1.users.heading' ] ) } </ h3 >
5454 < Form . Group controlId = "users-input" >
5555 < Form . Label > { intl . formatMessage ( messages [ 'wizard.step1.users.label' ] ) } </ Form . Label >
5656 < HighlightedUsersInput
@@ -70,10 +70,10 @@ const SelectUsersAndRoleStep = ({
7070 </ Form . Group >
7171
7272 { /* Roles Section */ }
73- < h3 className = "mt-4 mb-2" > { intl . formatMessage ( messages [ 'wizard.step1.roles.heading' ] ) } </ h3 >
73+ < h3 className = "text-primary mt-4 mb-2" > { intl . formatMessage ( messages [ 'wizard.step1.roles.heading' ] ) } </ h3 >
7474 { orderedContexts . map ( ( context ) => (
7575 < div key = { context } className = "role-group mb-4" >
76- < h5 className = "role-group-header mb-3 pl-4" >
76+ < h5 className = "h4 text-gray role-group-header my-4 pl-4" >
7777 { contextLabels [ context ] || context }
7878 </ h5 >
7979 < Form . RadioSet
@@ -86,7 +86,7 @@ const SelectUsersAndRoleStep = ({
8686 const radioContent = (
8787 < Form . Radio key = { role . role } value = { role . role } disabled = { role . disabled } >
8888 < Stack gap = { 2 } >
89- < span className = { `role-name font-weight-bold ${ role . disabled ? ' text-muted' : '' } ` } >
89+ < span className = { `role-name ${ role . disabled ? ' text-muted' : '' } ` } >
9090 { role . name }
9191 </ span >
9292 < p className = "mb-0 text-gray-500 small" > { role . description } </ p >
You can’t perform that action at this time.
0 commit comments