Skip to content

Commit

Permalink
fix: hide x scrollbar in replicate user [DHIS2-15611]
Browse files Browse the repository at this point in the history
  • Loading branch information
tomzemp committed Aug 2, 2023
1 parent 1c2a96d commit 58c7866
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/UserList/ContextMenu/Modals/ReplicateModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const ReplicateModal = ({ user, refetchUsers, onClose }) => {
name: user.displayName,
})}
</ModalTitle>
<ModalContent>
<ModalContent className={styles.modalContent}>
<form onSubmit={handleSubmit}>
<TextField
name="username"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
max-width: 250px;
margin-bottom: var(--spacers-dp8);
}

.modalContent {
overflow-x: hidden;
}

0 comments on commit 58c7866

Please sign in to comment.