Skip to content

Commit 743e218

Browse files
fix: [IPR-350] Added no-global-reset to modal component
1 parent 68b909a commit 743e218

File tree

1 file changed

+2
-1
lines changed
  • packages/scratch-gui/src/components/modal

1 file changed

+2
-1
lines changed

packages/scratch-gui/src/components/modal/modal.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ const ModalComponent = props => (
1717
<ReactModal
1818
isOpen
1919
className={classNames(styles.modalContent, props.className, {
20-
[styles.fullScreen]: props.fullScreen
20+
[styles.fullScreen]: props.fullScreen,
21+
'no-global-reset': true
2122
})}
2223
contentLabel={props.contentLabel}
2324
overlayClassName={styles.modalOverlay}

0 commit comments

Comments
 (0)