Skip to content

Commit 506c195

Browse files
authored
Merge pull request #1669 from topcoder-platform/PM-1609_navigation-for-users
Fix button width & color
2 parents 48346d2 + 5fff264 commit 506c195

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/components/Users/Users.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@
411411
margin-bottom: 20px;
412412
gap: 8px;
413413
> * {
414-
width: 125px;
414+
width: max-content;
415415
}
416416
}
417417

src/components/Users/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import ConfirmationModal from '../Modal/ConfirmationModal'
1414
import UserAddModalContent from './user-add.modal'
1515
import InviteUserModalContent from './invite-user.modal' // Import the new component
1616
import Loader from '../Loader'
17-
import { OutlineButton } from '../Buttons'
1817

1918
const theme = {
2019
container: styles.modalContainer
@@ -230,7 +229,7 @@ class Users extends Component {
230229
)
231230
}
232231
{projectOption && (
233-
<OutlineButton
232+
<PrimaryButton
234233
text={'Go To Project'}
235234
type={'info'}
236235
link={`/projects/${projectOption.value}/challenges`} />

0 commit comments

Comments
 (0)