Skip to content

Commit f96fe91

Browse files
authored
Merge pull request #1157 from jboolean/modal-height
Increase height breakpoint for modals
2 parents 9613a50 + 60b8a5e commit f96fe91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/shared/components/Modal/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import ReactModal from 'react-modal';
1111
import stylesheet from './modal.less';
1212

1313
const MODAL_WIDTH_MAX = 800; // @modal-width-max
14-
const MODAL_HEIGHT_MAX = 600; // @modal-height-max
14+
const MODAL_HEIGHT_MAX = 725; // @modal-height-max
1515

1616
export type FourtiesModalProps = React.PropsWithChildren<ReactModal.Props> & {
1717
size: 'large' | 'small' | 'x-large';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@modal-height-max: 600px;
1+
@modal-height-max: 725px;
22
@modal-width-max: 800px;

0 commit comments

Comments
 (0)